作者:我确实是一只猪_143_267 | 来源:互联网 | 2023-10-17 04:43
PHP操作MySql数据库_PHP教程:链接数据库$conn@mysql_connect(localhost,root,88888888)ordie(链接错误);解决中文乱码mys
//链接数据库
$cOnn= @mysql_connect("localhost","root","88888888") or die ("链接错误");
//解决中文乱码
mysql_query("set names 'GBK'");
//打开数据库
mysql_select_db("wordpress",$conn) or die("打开失败");
$sql = "select * from wp_posts";
//执行sql语句
$result = mysql_query($sql,$conn);
//循环打印所需参数
while($row = mysql_fetch_array($result))
{
echo $row[4]."
";//测验多次,$row[4]中只能为索引,不能为列名,郁闷中ing
}
摘自 灯下烛影
http://www.bkjia.com/PHPjc/478232.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/478232.htmlTechArticle//链接数据库 $cOnn= @mysql_connect(localhost,root,88888888) or die (链接错误); //解决中文乱码 mysql_query(set names GBK); //打开数据库 mysql_select_db(wordpres...