wie kann ich bei einem option die variable zugreifen wie bei dass bei input type ist?
[Variablen] option
Einklappen
X
-
So schon probiert ?
PHP-Code:$var = $_POST['name_des_selects'];
Gruss
tobiGutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten
[color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)
-
so wie bei nem input?!
schon mal mit
PHP-Code:echo '<pre>';
print_r($_POST);
echo '</pre>';
Sunshine CMS
BannerAdManagement
Borlabs - because we make IT easier
Formulargenerator [color=red]Neu![/color]
Herkunftsstatistik [color=red]Neu![/color]
Kommentar
-
ok jetzt mal genau:
PHP-Code:<select name="Namen" size="1" >
<optgroup label="Spieltag auswählen" id="A">
<option value="1" name="1" label="1" > 1. Spieltag</option>
<option value="2" label="2">1 2. Spieltag</option>
<option value="3" label="3"> 3. Spieltag</option>
<option value="4" label="4"> 4. Spieltag</option>
<option label="5"> 5. Spieltag</option>
</optgroup>
</select>
switch($vaue) oder wie?????
sio wie beim button:
switch($submit) funktioniert
Kommentar
-
PHP-Code:switch($_POST['Namen']){
....
}
Gruss
tobiGutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten
[color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)
Kommentar
-
Was funzt nicht...
PHP-Code:switch($_POST["Namen"])
{
case "1":
echo "Erster Spieltag ausgewählt";
break;
case "2":
echo "Erster Spieltag ausgewählt";
break;
}
gruss Chris
[color=blue]Derjenige, der sagt: "Es geht nicht", soll den nicht stoeren, der's gerade tut."[/color]
Kommentar
-
Methode ist post aber mit dem option hab ich meine probleme wie kann ich dass ansprechen?
PHP-Code:<select name="Namen" size="1" >
<optgroup label="Spieltag auswählen" id="A">
<option name="1"> 1. Spieltag</option>
<option name="2"> 2. Spieltag</option>
<option name="3"> 3. Spieltag</option>
<option name="4" > 4. Spieltag</option>
<option name="5"> 5. Spieltag</option>
<option label="6"> 6. Spieltag</option>
<option label="7"> 7. Spieltag</option>
<option label="8"> 8. Spieltag</option>
<option label="9"> 9. Spieltag</option>
<option label="10"> 10. Spieltag</option>
<option label="11"> 11. Spieltag</option>
<option label="12"> 12. Spieltag</option>
<option label="13"> 13. Spieltag</option>
<option label="14"> 14. Spieltag</option>
<option label="15"> 15. Spieltag</option>
<option label="16"> 16. Spieltag</option>
<option label="17"> 17. Spieltag</option>
</optgroup>
</select>
Kommentar
-
ok danke das dachte ich mir erst schon kanm aber etwas durcheinander, nun will ich einen query einbauen und den dann über ne whileschleife ausgeben, aber :
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/vhosts/5000130433/svschwabelweis.de/htdocs/1mannschaft/spielplan.php on line 92
PHP-Code:
case "1":
$sql = "SELECT man1, man2, tore1, tore2 from paarung ";
echo "Erster Spieltag ausgewählt";
break;
PHP-Code:
while($row = mysql_fetch_array($sql)) {
echo $row["man1"] . " - " . $row["man2"] . " " . $row["tore1"] . " : " .
$row["tore2"] . "<br />" . "<br />";
}
Kommentar
-
I don't believe in rebirth. Actually, I never did in my whole lives.
Kommentar
-
PHP-Code:// ......
$sql = "SELECT man1, man2, tore1, tore2 from paarung ";
//....... Du meinst nicht hier fehlt noch was?
//....... Grundlagen lernen......
while($row = mysql_fetch_array($sql)) { // $sql is auch völliger Quatsch
gruss Chris
[color=blue]Derjenige, der sagt: "Es geht nicht", soll den nicht stoeren, der's gerade tut."[/color]
Kommentar
-
ach man tut mir mal wieder sehr leid dass ich eure zeit in anspruch nehmen muss, mein großes problem:leichtsinn:
da schreib ich doch tatsächlich:
PHP-Code:$sql = "SELECT man1, man2, tore1, tore2 from paarung ";
PHP-Code:$sql = @mysql_query("SELECT man1, man2, tore1, tore2 from paarung ");
Kommentar
-
Jetz machs direkt GANZ richtig...
PHP-Code:$sql = @mysql_query("SELECT man1, man2, tore1, tore2 from paarung ");
// Ändern in
$sql = mysql_query("SELECT man1, man2, tore1, tore2 from paarung ") or die("Fehler: ".mysql_error());
gruss Chris
[color=blue]Derjenige, der sagt: "Es geht nicht", soll den nicht stoeren, der's gerade tut."[/color]
Kommentar
Kommentar