mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-09 01:23:10 +03:00
9 lines
348 B
PHP
9 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>
|