我在网上试图找到一个关于通过HTML& amp ;;将阿拉伯字母插入mysql的教程。 PHP
我的HTML页面看起来像这样
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
我的php页面就像这样
// Connects to your Database
mysql_connect("localhost", "root", "") or die(mysql_error());
mysql_select_db("castt") or die(mysql_error());
mysql_query("SET NAMES 'cp1256'");
mysql_query('SET CHARACTER SET cp1256');
当我浏览mysql数据库时,它看起来像“?????”
任何建议?
答案 0 :(得分:5)
在将输出声明为UTF-8时,您正在使用cp1256
数据库。那不行。
cp1256
替换UTF8
可能已经有所帮助。
答案 1 :(得分:4)
我已经通过添加
解决了mysql_query("set character_set_server='utf8'");
mysql_query("set names 'utf8'");
连接后
答案 2 :(得分:3)
很棒它正在工作....... :) 让我告诉你代码。
步骤1创建数据库表
CREATE TABLE `language_messages` (
`lang_id` int(11) NOT NULL auto_increment,
`en` varchar(500) NOT NULL,
`ar` varchar(500) NOT NULL,
PRIMARY KEY (`lang_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ;
INSERT INTO `language_messages` VALUES (1, 'About Us', 'من نحن');
INSERT INTO `language_messages` VALUES (2, 'Contact Us', ' تواصل معنا ');
INSERT INTO `language_messages` VALUES (5, '', 'శ్రీనివాస్ తామాడా');
步骤2创建连接
$conn=mysql_connect(HOST,DB_USER,DB_PASS) or die(mysql_error());
$db=mysql_select_db(DB_NAME,$conn) or die(mysql_error());
mysql_query("set character_set_server='utf8'");
mysql_query("set names 'utf8'");
步骤3查看HTML页面中的输出
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--<html dir="rtl" lang="ar" xml:lang="ar" xmlns="http://www.w3.org/1999/xhtml">-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
</head>
<body>
<?php
$sql = "select * from language_messages";
$res = mysql_query($sql) or die(mysql_error());
while($row = mysql_fetch_array($res))
{
echo"<br />". $row['en'];
echo"<br />". $row['ar'];
}
?>
</body>
</html>