Frage : Schlingen, um Daten in mysql Tabelle einzusetzen

Ich habe etwas Werte im Pfosten wie:

$ob1=$_POST [„ob1“];
$ob2=$_POST [„ob2“];
$ob3=$_POST [„ob3“];
----------------------upto 30-----------
$ob50=$_POST [„ob50“];

first, das ich Schleife addieren möchte, um Code short.

now zu bilden, ich Code verwende, um diese Wert zum Tabelle einzusetzen:


$query1= mysql_query („EINSATZ IN squestions (obno, ucode)
VALUES
(„$ob1“, „$testcode ")“);


$query2= mysql_query („EINSATZ IN squestions (obno, ucode)
VALUES
(„$ob2“, „$testcode ")“);


$query3= mysql_query („EINSATZ IN squestions (obno, ucode)
VALUES
(„$ob3“, „$testcode ")“);


-------------bis zu 50 Fragen----------------


$query50= mysql_query („EINSATZ IN squestions (obno, ucode)
VALUES
(„$ob50“, „$testcode ")“);


Please helfen mir,
how, Schleife für dieses hinzuzufügen?





Antwort : Schlingen, um Daten in mysql Tabelle einzusetzen

Traurig habe ich Ihnen eine Spitze eines wertlosochsen gegeben.

„ob“. $counter nicht „ob$counter“
1:
2:
3:
4:
5:
6:
7:
8:
9:
für ($counter = 1; $counter <>'')
  {
    $ob=$_POST [„ob“. $counter];
    mysql_query („EINSATZ IN squestions (obno, ucode)
      WERTE („$ob“, „$testcode ")“);
  }
}
Weitere Lösungen  
 
programming4us programming4us