Hallo alle zusammen!
Kann sich das bitte mal einer von euch anschauen.
Ich weis nämlich nicht ob das so richtig ist wie ich das hier gelöst habe.
Kann sich das bitte mal einer von euch anschauen.
Ich weis nämlich nicht ob das so richtig ist wie ich das hier gelöst habe.
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>1 %</title>
</head>
<body>
<form action="re.php">
<table width="262" border="3">
<tr>
<th scope="col"><input type="hidden" name="sent" value="yes">
<input type="text" name="multiplikation"></th>
<th scope="col"><input name="submit" type="submit"></th>
<th scope="col"><?php
$sent = $_GET['sent'];
$multiplikation = $_GET['multiplikation'];
$ergebnis = $multiplikation * 1;
if ($sent == 'yes') {
echo '<h1>Menge ist "'.$ergebnis.'":</h1>';
}
?>
</th>
</tr>
</table>
<br>
</form>
</th>
</body>
</html>