我的项目存储在mysql DB中的数据是用Bangla语言编写的。要处理Bangla,我需要utf-8 unicode编码。所以我在php文件中手动设置编码 -
mysqli_query($connect, "SET NAMES 'utf8'");
但是在添加它时会显示500内部服务器错误。 项目链接是 http://www.goraifilms.com/heros/showdata.php
请帮忙。提前致谢
答案 0 :(得分:0)
请尝试使用此代码:
//assuming $connect is your connection
$connect = mysqli_connect($host, $user, $password, $database);
$connect->set_charset('utf8');