当mysql死掉时,php重新加载页面

时间:2014-03-07 02:49:04

标签: php mysql

有什么方法可以让这个页面在mysql死机时重新加载,所以它会一直反复运行,因为一段时间后连接会死掉,超时是我的猜测

2 个答案:

答案 0 :(得分:3)

这样做,三秒后刷新......

$link = mysql_connect("localhost", "", ""); 
if (!$link) {
    echo "Connection lost will refresh in 3 sec";
    header("Refresh: 3");
    exit();
}

答案 1 :(得分:0)

尝试,

 mysql_connect("localhost", "", "") or die(header( "refresh:5;" ));