mirror of
https://github.com/JannikKoester/Tischverwaltung.git
synced 2026-01-10 23:00:08 +01:00
16 lines
346 B
PHP
16 lines
346 B
PHP
<?php
|
|
require './required/header.php';
|
|
?>
|
|
<label for="cars">Choose a car:</label>
|
|
|
|
<select id="cars" onchange="test()">
|
|
<option value="volvo">Volvo</option>
|
|
<option value="saab">Saab</option>
|
|
<option value="vw">VW</option>
|
|
<option value="audi" selected>Audi</option>
|
|
</select>
|
|
<script>
|
|
function test() {
|
|
alert( "ready!" );
|
|
}
|
|
</script>
|