我有一个包含印地文文本的数据库。当我获取数据但得到“ ??? ”代替印地文文本时。
这是我的代码。
<table width="100%" class="table table-striped table-bordered table-hover" id="example">
<thead>
<tr>
<th>Id</th>
<th>words</th>
<th>Meaning</th>
</tr>
</thead>
<tbody>
</tbody>
-数据库代码
$table = 'word_list';
$primaryKey = 'ID';
$columns = array(
array( 'db' => 'ID', 'dt' => 0 ),
array( 'db' => 'ID', 'dt' => 1 ),
array( 'db' => 'Words', 'dt' => 2 )
);
require( 'ssp.class.php' );
echo json_encode(
SSP::simple( $_GET, $sql_details, $table, $primaryKey, $columns )
);
?>
如何从数据库中正确获取印地文文本。