Hi Towner,
ich hatte vorher lw und hab einfach einen Taschenrechner in PHP gecodet.
Grund: Wie gesagt, lw
Dauer: 5 Minuten zum coden und Thread erstellen
Code:
Spoiler anzeigen
<?php
if(isset($_POST['calcul'])) {
$type = $_POST['action'];
if($_POST['zahl1'] == NULL) {
$zahl1 = 0; } else {
$zahl1 = $_POST['zahl1']; }
if($_POST['zahl2'] == NULL) {
$zahl2 = 0; } else {
$zahl2 = $_POST['zahl2']; }
if($zahl1 == NULL $zahl2 == NULL) {
$error = "Bitte fülle alle Felder aus!"; }
else
if($type == "+") {
$resultat = $zahl1 + $zahl2;
}
if($type == "*") {
$resultat = $zahl1 * $zahl2;
}
if($type == "/") {
$resultat = $zahl1 / $zahl2;
}
if($type == "-") {
$resultat = $zahl1 - $zahl2;
}
}
?>
<title>Taschenrechner</title>
<?php if(isset($error)) { echo $error; } ?>
<form method="post">
<input type="text" name="zahl1" placeholder="Die erste Zahl.."><br />
<input type="text" name="zahl2" placeholder="Die zweite Zahl.."><br />
<select name="action">
<option value="+">Addition</option>
<option value="*">Multiplikation</option>
<option value="/">Division</option>
<option value="-">Subtraktion</option>
</select><br />
<input type="submit" name="calcul" value="Rechnen">
</form>
<?php if(isset($resultat)) { ?>
Resultat: <input type="text" disabled="disabled" value="<?php echo $resultat; ?>"><?php } ?>
Viel Spaß undso,
- Inventar