Halli Hallo,
normalerweise nutze ich immer vorgefertigte Scripte, die ich dann modifiziere, doch ich will es selbst lernen.
Auf der Lern-DVD kommt das Kapitel „Formulare“, wo ich Folgendes so gelernt habe:
[HTML]
Name | |
Vorname | |
Straße | |
Geburtsdatum | |
Geschlecht | männlich weiblich |
Gangsta | aJunkie Yanik Ficker |
Name | <?php echo $HTTP_POST_VARS["form_name"]; ?> |
Vorname | <?php echo $HTTP_POST_VARS["form_vorname"]; ?> |
Straße | <?php echo $HTTP_POST_VARS["form_street"]; ?> |
Geburtsdatum | <?php echo $HTTP_POST_VARS["form_birth"]; ?> |
Geschlecht | <?php echo $HTTP_POST_VARS["form_geschlecht"]; ?> |
Gangsta |
<?php
foreach ($HTTP_POST_VARS["form_gangsta"] as $ficker);
{
echo $ficker . " "; } ?> |
Warning: Invalid argument supplied for foreach() in C:\wamp\www\training\index2.php on line 45
Notice: Undefined variable: ficker in C:\wamp\www\training\index2.php on line 47[/PHP]Wo ist denn mein Fehler? Soweit ich weiß, habe ich alle Variablen gegeben.
Die Lern DVD ist schon ein paar Jahre alt.
Macht man es heute vielleicht nicht mehr so?
Meine verwendeten Formulare sind auch alle anders geschrieben.
Edit: Entschuldigt die Variablen. :-[ So lern ich schneller. xD