forked from mirrors/easyappointments
10 lines
348 B
PHP
10 lines
348 B
PHP
|
<select <?= $attributes ?>>
|
||
|
<?php foreach ($timezones as $continent => $entries): ?>
|
||
|
<optgroup label="<?= $continent ?>">
|
||
|
<?php foreach ($entries as $value => $name): ?>
|
||
|
<option value="<?= $value ?>"><?= $name ?></option>
|
||
|
<?php endforeach ?>
|
||
|
</optgroup>
|
||
|
<?php endforeach ?>
|
||
|
</select>
|