is it possible in php to show in the same page different date-time that belongs to different timezones?
For exemple if I want to show date and time of 2 different location in the world.
not sure if its right but i tryed this:
<div>
<?php
date_default_timezone_set("Europe/Rome");
echo " Italy time: " . date("h:i:sa");
echo " day " . date("d/m/Y") . "<br>";
?>
</div>
<div>
<?php
date_default_timezone_set("Asia/Vientiane");
echo "Vietnam time " . date("h:i:sa");
echo " day " . date("d/m/Y") . "<br>";
?>
</div>