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

rbpvctlc  于 2021-06-17  发布在  Mysql
关注(0)|答案(0)|浏览(140)

我有一个数据库,其中包含印地语文本。当我获取数据时,却用“???”代替印地语文本。
这是我的密码。

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

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

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题