i have set the timezone to any time zone that the user have
for example "America/New_York"
date_default_timezone_set("America/New_York");
then i make the flowing statements
$data =mysql_query("SELECT DATE FROM TABLE WHERE ID = 2");
$row = mysql_fetch_array($data);
echo date("H:i:s",strtotime($row['data')));
the DATE column store date in GMT timezone .. i want to display the equivalent date in
ANY TIME ZONE the user prefer
what is wrong , maybe i am wrong @ something
any help please .
Note my changes…