php, OOP dosent allow me to fetch multilingual content?
- by user3138823
i have written bellow class for my database connection.
class dbConnection {
protected $dbLink;
public $db_host = "127.0.0.1";
public $db_user = "root";
public $db_pass = "";
public $db_name = "answer";
function connect() {
try {
$dbLink = new PDO('mysql:host='.$this->db_host.';dbname='.$this->db_name, $this->db_user, $this->db_pass);
return $dbLink;
} catch (PDOException $e) {
return $e->getMessage();
}
}
}
but in my databse i have multilingual content ( collection type = utf8_general_ci ).
when i try to fetch data it returns ???? instead of real data.
please can any one tell me how can i improve my class to work with multilingual contents.
Thanks.