从数据库获取数据表中的印地文文本

时间:2018-11-26 15:21:27

标签: php mysql json ajax datatable

我有一个包含印地文文本的数据库。当我获取数据但得到“ ??? ”代替印地文文本时。

这是我的代码。

<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 )
);
?>

如何从数据库中正确获取印地文文本。

0 个答案:

没有答案