|
|
|
ขอคำแนะนำในการ insert ข้อมูลที่แสดงข้อมูลแบบวนลูป ผมใช้คำสั่ง ให้ $a แสดงผลไปทั้งหมด 7 รอบ ผมอยากให้ ผลลัพท์ที่แสดงทั้งหมด 7 รอบ |
|
|
|
|
|
|
|
ใช้ for แล้วนับเอาครับจนถึง 7 แล้วภายใน for ก็เก็บผลลัพธ์ใส่ string แล้วเอามา insert
Code (PHP)
for ( $i=1;$i<=7;$i++ ) {
echo $a;
// insert
sql_query('insert into .....');
}
|
|
|
|
|
Date :
2012-01-07 21:43:12 |
By :
mr.v |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ติดตรงนี้เหมือนกันครับ แต่ดูโค้ดพี่ mr.v ไม่เข้าใจครับ
|
|
|
|
|
Date :
2012-01-07 23:51:27 |
By :
BVC |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตัวอย่างครับ
Code (PHP)
for($i=1;$i<=$_POST["hdnLine"];$i++)
{
if($_POST["txtCustomerID$i"] != "")
{
$strSQL = "INSERT INTO customer ";
$strSQL .="(CustomerID,Name,Email,CountryCode,Budget,Used) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["txtCustomerID$i"]."','".$_POST["txtName$i"]."', ";
$strSQL .="'".$_POST["txtEmail$i"]."' ";
$strSQL .=",'".$_POST["txtCountryCode$i"]."','".$_POST["txtBudget$i"]."', ";
$strSQL .="'".$_POST["txtUsed$i"]."') ";
$objQuery = mysql_query($strSQL);
}
}
Go to : PHP MySQL Add/Insert Multiple Record
|
|
|
|
|
Date :
2012-01-08 07:50:33 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|