$conn=@mysql_connect('127.0.0.1','root','root','3306') or die("数据库连接失败,请联系管理员!");
mysql_query("set names 'utf8'");
$account="小柒";
$sql="SELECT * FROM `db_mir`.`user` WHERE `name`='$account' LIMIT 1";
$result=mysql_query($sql) or die(mysql_error());
结果成功输出错误信息,如下:
mysql_query($sql) or die(mysql_error())示例:<?php$conn=@mysql_connect('127.0.0.1','root','root','3306') or die("数据库连接失败,请联系管理员!");mysql_query("set names 'utf8'");$account="小柒";$sql="SELECT...