I have a web gui that allows users to display all datetimes in the timezone of their choosing from a drop-down list using the following code:
$result = time2str($template, $time, $timezone);
What I am looking for is the list of acceptable timezones that can be sent in as the third parameter in the call to time2str. Is there a programatic way to retireve that list or is the list compiled on-line somewhere that I can just hard-code into an array? I've been searching, but so far, no luck. I want to display this list to the user for them to choose from. Thanks in advance for any help.
$result = time2str($template, $time, $timezone);
What I am looking for is the list of acceptable timezones that can be sent in as the third parameter in the call to time2str. Is there a programatic way to retireve that list or is the list compiled on-line somewhere that I can just hard-code into an array? I've been searching, but so far, no luck. I want to display this list to the user for them to choose from. Thanks in advance for any help.