mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 18:12:26 +03:00
9 lines
362 B
PHP
9 lines
362 B
PHP
<select <?= vars('attributes') ?>>
|
|
<?php foreach (vars('timezones') as $continent => $entries): ?>
|
|
<optgroup label="<?= $continent ?>">
|
|
<?php foreach ($entries as $value => $name): ?>
|
|
<option value="<?= $value ?>"><?= $name ?></option>
|
|
<?php endforeach ?>
|
|
</optgroup>
|
|
<?php endforeach ?>
|
|
</select>
|