ich will eine Vorschau für ein Formular in php erstellen.
Nur geht irgendwie die Vorschau mit den Radio-Buttons nicht!
Seht selbst:
Klick
Es könnte sein, dass Tripod wegen der Werbung das Klicken für eine Weile blockt.
Hier jedenfalls der Code-Schnipsel:
Code: Alles auswählen
//Aus vorschau.php
$motivation=$_POST['motivation'];
<fieldset>
<?php motivation(); ?>
</fieldset>
Code: Alles auswählen
function motivation(){
global $motivation;
global $a;
$checked = $a==$motivation ? "checked" : "";
for($a=5; $a>=0;$a--){
echo "<input type=\"radio\" name=\"motivation\" value=\"$a\"".$checked." >$a";
}
}
Für Hilfe wäre ich sehr dankbar!
Liebe Grüße
Reality