blob: 1a405fbe35962122907efc449c0d74623ccd2847 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<? $attributes = ''; ?>
<? foreach ($select_attributes as $key => $value) : ?>
<? $attributes .= sprintf('%s = "%s"', $key, $value) ?>
<? endforeach ?>
<select <?= $attributes ?>>
<? foreach ($semesters as $sem_key => $one_sem) : ?>
<? $one_sem['key'] = $sem_key; ?>
<option value="<?= $one_sem[$option_value] ?>" <?= ($one_sem[$option_value] == $default ? "selected" : "") ?>>
<?= htmlReady($one_sem['name']) ?>
</option>
<? endforeach ?>
</select>
|