Ich erhalte ständig den Fehler "Undefined index: Volume in C:\xampp\htdocs\Volume\test2.php on line 29" kann mir jemand sagen wo mein Fehler liegt?
test2.php:
<html>
<head>
<title>Musik</title>
</head>
<body>
<table bgcolor="#DDDDDD" width="100%">
<colgroup>
<col width="70%">
<col width="30%">
</colgroup>
<tr >
<th align="center" valign="middle"><img src="./Bild.jpg" alt="Bild" width="50%"></th>
<th align="left" valign="middle">Lautstärke anklicken<br>
<form name="form1" Method="Post">
<p>
<input type="radio" name="Volume" value="100">100<br>
<input type="radio" name="Volume" value="75">75 (standard)<br>
<input type="radio" name="Volume" value="50">50<br>
<input type="radio" name="Volume" value="25">25<br>
<input type="radio" name="Volume" value="0">Ton aus
</p>
</form>
<?php
switch($_POST['Volume']) {
case "100": echo("100"); break;
case "75": echo("75"); break;
case "50": echo("50"); break;
case "25": echo("25"); break;
case "0": echo("0"); break;
default: echo("Bitte wählen Sie eine Lautstärke!"); break;
}
?>
<a href="./home.php">Zurück</a></th>
</tr>
</table>
</body>
</html>
test2.php:
<html>
<head>
<title>Musik</title>
</head>
<body>
<table bgcolor="#DDDDDD" width="100%">
<colgroup>
<col width="70%">
<col width="30%">
</colgroup>
<tr >
<th align="center" valign="middle"><img src="./Bild.jpg" alt="Bild" width="50%"></th>
<th align="left" valign="middle">Lautstärke anklicken<br>
<form name="form1" Method="Post">
<p>
<input type="radio" name="Volume" value="100">100<br>
<input type="radio" name="Volume" value="75">75 (standard)<br>
<input type="radio" name="Volume" value="50">50<br>
<input type="radio" name="Volume" value="25">25<br>
<input type="radio" name="Volume" value="0">Ton aus
</p>
</form>
<?php
switch($_POST['Volume']) {
case "100": echo("100"); break;
case "75": echo("75"); break;
case "50": echo("50"); break;
case "25": echo("25"); break;
case "0": echo("0"); break;
default: echo("Bitte wählen Sie eine Lautstärke!"); break;
}
?>
<a href="./home.php">Zurück</a></th>
</tr>
</table>
</body>
</html>