- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
function open_connect($db,$serv,$user,$pswd)
{ $i=0;
ini_set('max_execution_time', '100');
while( $i<3 && !($dblinx=@mysql_connect( $serv, $user, $pswd )) )
{
$i++;
sleep(30);
}
ini_restore('max_execution_time');
}
guest 25.06.2009 22:04 # 0