<?php
$db_user = "***";
$db_pass = "***";
$db_name = "****";
$db_serv = "*****";
error_reporting(0);
@mysql_connect ( $db_serv, $db_user, $db_pass );
@mysql_select_db( $db_name );
return $res;
mysql_close();
?>
Ok i have this config and i want to add a line that will refresh all scripts every 12 hours for e.x .
Anyone knows how can i do this? i have search a lot and i cant find it.
Also one other issue is that if i have my pc close and i open my website from another pc is very slow (because of script that can't connect to mysql how can i solve this?)