Warning: mysql_connect() [function.mysql-connect]: [2002] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试 (trying to connect via tcp://localhost:3306) in D:myphpAppServwwwmysqlmysql1.php on line 3
Warning: mysql_connect() [function.mysql-connect]: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 in D:myphpAppServwwwmysqlmysql1.php on line 3
Fatal error: Maximum execution time of 60 seconds exceeded in D:myphpAppServwwwmysqlmysql1.php on line 3。。是什么原因?
我的代码如下
<?php
$conn=mysql_connect("localhost","user","root");
if(!$conn){
mysql_error();
}
/* mysql_select_db("test");
$sql="select *from user1";
$res=mysql_query($sql,$conn);
while($row=mysql_fetch_row($res)){
foreach($row as $key=>$val){
echo "$val";
}
echo "</br>";
}
mysql_free_result($res);
mysql_close($conn);*/
?>
付费偷看金额在0.1-10元之间
你连接数据库的参数填写正确吗?
先ping一下数据库主机,看通不通;或者用客户端连接一下试试
一周热门 更多>