我想使用 codeigniter 框架在网页中使用 urdu?
I want to use urdu in webpage using codeigniter framework?
我正在 codeigniter 框架中使用 urdu 开发一个网站。我要加载
乌尔都语在我的网页上,但我每次都失败了。
当我尝试访问 urdu 数据并在网页中显示它时,我以 uni 代码将 urdu 发送到数据库,它显示了附件中的其他一些内容。
我已经使用了下面的元标记
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
如何使用 codeigniter 框架在网页中编写 urdu。
步骤:1 - 转到 table 结构并将排序规则 latin1_swedish_ci 更改为 utf8_general_ci
第 2 步 - 您必须在数据结果页面中包含以下标签。
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
步骤 :3 - 插入 'N' 前缀。这里的 N 代表国家语言字符集。这意味着您传递的是 NCHAR、NVARCHAR 或 NTEXT 值
步骤 :4 - PHP 代码显示数据库中的记录。在此之前,您必须指定 mysql_query() 函数数据字符集类型
<?php
include('db.php');
mysql_query ("set character_set_results='utf8'");
$query = mysql_query("SELECT * FROM books") or die(mysql_error());
while($row=mysql_fetch_array($query))
{
echo $row['id']; // Book id
echo $row['books_title']; // Book title
}
?>
经过大量研究后我发现的正确答案是您必须将数据库 table 排序规则设置为 utf8_general_ci 这将对您有很大帮助.
您的页眉中必须包含以下行
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
我只是通过在每个__constructor中添加以下header来解决问题。你可以在 parent controller
中添加这个
header('Content-Type: text/html; charset=utf-8');
我正在 codeigniter 框架中使用 urdu 开发一个网站。我要加载
乌尔都语在我的网页上,但我每次都失败了。
当我尝试访问 urdu 数据并在网页中显示它时,我以 uni 代码将 urdu 发送到数据库,它显示了附件中的其他一些内容。
我已经使用了下面的元标记
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
如何使用 codeigniter 框架在网页中编写 urdu。
步骤:1 - 转到 table 结构并将排序规则 latin1_swedish_ci 更改为 utf8_general_ci
第 2 步 - 您必须在数据结果页面中包含以下标签。
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
步骤 :3 - 插入 'N' 前缀。这里的 N 代表国家语言字符集。这意味着您传递的是 NCHAR、NVARCHAR 或 NTEXT 值
步骤 :4 - PHP 代码显示数据库中的记录。在此之前,您必须指定 mysql_query() 函数数据字符集类型
<?php
include('db.php');
mysql_query ("set character_set_results='utf8'");
$query = mysql_query("SELECT * FROM books") or die(mysql_error());
while($row=mysql_fetch_array($query))
{
echo $row['id']; // Book id
echo $row['books_title']; // Book title
}
?>
经过大量研究后我发现的正确答案是您必须将数据库 table 排序规则设置为 utf8_general_ci 这将对您有很大帮助.
您的页眉中必须包含以下行
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
我只是通过在每个__constructor中添加以下header来解决问题。你可以在 parent controller
中添加这个header('Content-Type: text/html; charset=utf-8');