$username="gfadbadmin";
$password="gfadbadmin05";
$database="gfadbadmin";
$localhost="mysql67.secureserver.net";
mysql_connect($localhost,$username,$password);
@mysql_select_db($database) or die( "Unable to select database");
$h = "10";// Hour for time zone goes here e.g. +7 or -4, just remove the + or -
$hm = $h * 60;
$ms = $hm * 60;
$today = gmdate("l, F d, Y", time()+($ms));
echo $today;
?>