Variablen versenden

hmm
jetzt sieht mein Script so aus:
kampf/index.php
PHP:
// [...]
echo('<form action="../action2/index.php"><input type="hidden" value="$a" name="a" /><input type="hidden" value="$b" name="b" /><input type="submit" value="Weiter"></form>');
echo("<h3><font color='blue'>$a </font>: <font color='red'>$b</font></h3>");


kampf2/index.php
PHP:
// [...]

elseif ($comp == 4 && $_POST['chose'] == block)
{
echo("Der Computer springt. Du Blockst.");
$c=0;
$d=0;
}
elseif ($comp == 4 && $_POST['chose'] == springen)
{
echo("Der Computer springt. Du springst.");
$c=0;
$d=0;
}


//debugging

elseif ($_POST['chose'] == "")
{
echo('Fehler: Keine angabe -.-');
}

$e = $_POST[a]+$c;
$f = $_POST[$b]+$d;
echo('<form action="../action3/index.php"><input type="submit" value="Weiter"></form>');
echo("<h3><font color='blue'>$e </font>: <font color='red'>$f</font></h3>");
 
PHP:
$f = $_POST[b]+$c;

Vor dem b kommt $ dort habe ich mich wohl vertippt, ich weiß nicht ob du die Daten noch weiter benötigst, weil sonst müsstest du sie beim nächsten Formular auch übergeben.
 
Zurück