Hi ich schreibe morgen einen Test über PHP + HTML und jetzt komme ich nicht weiter weil ich nicht das Ergebnis ausgegeben bekomme beim Rechtwinkliegen Dreieck
bitte um Hilfe
PHP
- <html>
- <head>
- </head>
- <body>
- <form method="get" action="tms.php">
- Rechtwinkliges Dreieck<input type="radio" name="wahl" value="dr">
- <br>
- Rechteck<input type="radio" name="wahl" value="re">
- <br>
- Kreis<input type="radio" name="wahl" value="kr">
- <br>
- <input type="submit">
- <input type="reset">
- </form>
- <?php
- if(isset($_GET['wahl']))
- {
- ?>
- <?php
- if(($_GET['wahl']) == 'dr')
- {
- echo "Rechtwinkliges Dreieck<br><br>";
- ?>
- <form method="get" action="tms.php">
- Seite A:<input type="text" name="a" >
- <br>
- Seite B:<input type="text" name="b" >
- <br>
- <input type="Submit">
- <input type="reset">
- <br>
- </form>
- <?php
- if(isset($_GET['a']) && isset($_GET['b']))
- {
- $a = $_GET['a'];
- $b = $_GET['b'];
- $c = $a*$b;
- echo "Die Fläche des Körpers beträgt:$c";
- }
- }
- ?>
- <?php
- if(($_GET['wahl']) == 're')
- {
- echo "Rechteck<br><br>";
- ?>
- Seite A:<input type="text" name="a" value="">
- <br>
- Seite B:<input type="text" name="b" value="">
- <br>
- <input type="Submit"> <input type="reset">
- <?php
- }
- ?>
- <?php
- if(($_GET['wahl']) == 'kr')
- {
- echo "Kreis<br><br>";
- ?>
- <br>
- <input type="Submit"> <input type="reset">
- <?php
- }
- }
- ?>
- </body>
- </html>