我无法从MySQL解析PHP中的数据。
这是我的代码
<?php
header('Content-Type: text/html; charset=utf-8');
// array for JSON response
$response = array();
echo 'भगवान';
require_once __DIR__ . '/db_connect.php';
// connecting to db
$db = new DB_CONNECT();
// get all products from products table
$result = mysql_query("SELECT *FROM create_event") or die(mysql_error());
// check for empty result
if (mysql_num_rows($result) > 0) {
// looping through all results
// products node
$response["create_event"] = array();
while ($row = mysql_fetch_array($result)) {
// temp user array
$product = array();
$product["id"] = $row["id"];
$product["desc"] = $row["desc"];
$text;
array_push($response["create_event"], $product);
}
// success
$response["success"] = 1;
echo json_encode($response);
} else {
// no products found
$response["success"] = 0;
$response["message"] = "No products found";
// echo no users JSON
echo json_encode($response);
}
?>
这是我的数据库,我已经设置了utf-8 ci格式的所有排序规则,但仍无效:
我已经尝试了所有可能的解决方案并在线帮助,并且已经浏览了热门帖子和答案,并且还设置了浏览器设置以支持印地语,但仍然在输出中显示?
标记。这是输出格式
भगवान{"id":"1","desc":"???? ??????"}
答案 0 :(得分:0)
mysql_query('SET character_set_results=utf8');
在连接到数据库之后或使用任何select语句之前使用它。