Taschenrechner

einfache Berechnungen mit PHP


Zahl 1: Zahl 2:

Addition | Subtraktion | Multiplikation | Division



<!DOCTYPE html>

<html>

<head>
  <title>Taschenrechner</title>
</head>

<body>
<h1>Taschenrechner</h1>
<h3>einfache Berechnungen mit PHP </h3>
<hr>
<form name="eingabe" action="berechnung.php" method="get">
    <p>Zahl 1: <input type="number" name="zahl1" step="0.01"> Zahl 2: <input type="number" name="zahl2"  step="0.01"></p>
    <p>
        <input name="operator" type="radio" value="+"> Addition |
        <input name="operator" type="radio" value="-"> Subtraktion |
        <input name="operator" type="radio" value="*"> Multiplikation |
        <input name="operator" type="radio" value="/"> Division
    </p>
    <hr>
    <p><input name="berechnen" type="submit" value="Berechnen"></p>

</form>
<?php
    
//***Ausdruck Quelltext***
    
echo"<hr>"  ;
    echo 
highlight_file("index.php");
?>
</body>
</html>
1