This is my connection script now I want to set Mysqli charset utf8 to show Hindi character where I have to set this?
public function __construct()
{
$this->conn=new mysqli($this->host,$this->username,$this->pass,$this-
>db_name);
if($this->conn->connect_errno)
{
die ("database connection failed".$this->conn->connect_errno);
}
}