$conn=@mysql_connect("localhost","root","123456") or die("链接失败");
mysql_select_db("test",$conn);
$sql="SELECT * FROM `test`";
$row=mysql_fetch_array($sql);
var_dump($row);
?>
这样的结果 标出来看下
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn