Hello,
I am trying to create a "world Clock"
I am using the following code
$timestamp = strtotime("+2 hours");
echo strftime( "%m/%d/%Y %I:%M:%S %p",$timestamp);
Yet Bombay is 13.5 hours ahead of my local time.
If I trie to us the following code I get a blank screen
$timestamp = strtotime("+13.5 hours");
echo strftime( "%m/%d/%Y %I:%M:%S %p",$timestamp);
How do I do a +13.5?
As always Thanks!
Chris