Hi
I am reading a text-file.
-
klasse: 05D3
-
klasse: 05E3
-
klasse: 05F3
These string end up in a combobox:

As you can see, the 05E3 is displayed as 5000. Same for 06E3 → 6000.
The reason is obvious (5 * 10^3 = 5000). But I have no clue whatsoever how to prevent this math-“feature”…
The demo of this issue is here: Krankmeldung von Schülern | KGS Rastede
<select type="form-select" id="klasse" class="form-select" name="klasse" value="<?= $data['klasse'] ?? '' ?>" required>
<option selected disabled>Klasse auswählen</option>
<?php foreach (page('formulare/klassen')->klassen()->toStructure() as $klasse) : //Das Kirby Feld durchlaufen für alle Einträge ?>
<?php if ($klasse->klasse() == '------') : //Die Striche sollen nur als Trennung dienen ?>
<option disabled class='text-muted'><?= $klasse->klasse() ?></option>
<?php else : ?>
<option><?= $klasse->klasse() ?></option>
<?php endif ?>
<?php endforeach ?>
</select>
Thanks in advance 