php + flash ($POST/$GET->Button) Da mein anderes thema anscheinend zu speziell war versuch ichs einfach nochmal ;-)
Ok mein problem ist die Auswahlmöglichkeit in php. Wenn ich jetzt buttons mache z.B:
PHP:1 2 3 4 5 6 7 8 9 10 11
|
<form action="hochrechnung.php" method="post">
<input type="submit" name="tabellarisch" value="tabellarisch">
<?php
if (isset($_POST["tabellarisch"])) { $anzeige = 1; } ?>
<input type="submit" name="prozentual" value="prozentual">
<?php
if (isset($_POST["prozentual"])) { $anzeige = 2; } ?>
</form>
|
und wenn ich nun meit einer if Abfrage $anzeige == 2; die swf öffne werden die Variablen zu undefined, obwohl ohne Buttons funktioniert alles prima ;-(
Das Problem ist die Übergabe Mit $_POST funktioniert nicht kein Link, kein Button, ich weiß nicht mehr weiter.... |