mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 18:12:26 +03:00
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>
|