BlackerLotus
Grünschnabel
Ich möchte eine per $zufallszahl = rand(0,100); generiet Zahl per Formular weitergegeben wird.
Formular:
<form action="auswertung2.php" method="post">
<input type="text" name="zahl">
<input type="hidden" name="zufallszahl" value="<?= htmlentities($zufallszahl) ?>">
<input type="hidden" name="zufallszahl" value="<?= htmlentities($versuche) ?>">
<input type="submit" value="Liegen Sie jetzt richtig?" name="button">
</form>
auswertung2.php:
$zufallszahl=0;
$versuche=0;
if (isset($_POST['zufallszahl'])) $zufallszahl=$_POST['zufallszahl'];
if (isset($_POST['versuche'])) $zufallszahl=$_POST['versuche'];
So ungefähr? Das funktioniert irgendwie nicht, die Zufallszahl ist irgendwie immer 1.
Formular:
<form action="auswertung2.php" method="post">
<input type="text" name="zahl">
<input type="hidden" name="zufallszahl" value="<?= htmlentities($zufallszahl) ?>">
<input type="hidden" name="zufallszahl" value="<?= htmlentities($versuche) ?>">
<input type="submit" value="Liegen Sie jetzt richtig?" name="button">
</form>
auswertung2.php:
$zufallszahl=0;
$versuche=0;
if (isset($_POST['zufallszahl'])) $zufallszahl=$_POST['zufallszahl'];
if (isset($_POST['versuche'])) $zufallszahl=$_POST['versuche'];
So ungefähr? Das funktioniert irgendwie nicht, die Zufallszahl ist irgendwie immer 1.