I am programming forum script and I have problem in time because the server time defrent from my country time;
I tried to use this own function but the problem transferred to my friends in other countries hhhhh:
function ftime($time, $reg = false)
{
$time = $time ;
$mytime = protect($_SESSION['mytime']);
$time = $time + $mytime;
$time2 = time() - 3600 + $mytime;
}
** note : this not all of my function
PHP is a server side language and can not directly get client’s Time. You will have to check for timezones and write your own function with a little help from client side scripts.