/ Published in: PHP
URL: http://neo22s.com/timezone-select-for-php/
Simple script that returns to us a list with possible TimeZones
Expand |
Embed | Plain Text
<select id="timezone" name="timezone"> <?php $timezone_identifiers = DateTimeZone::listIdentifiers(); foreach($timezone_identifiers as $value) { { echo "<option>$value</option>"; } } ?> </select>
You need to login to post a comment.
