|
|
|
[PHP MYSQL ] inser หลาย record ลง database ค่ะ รบกวนพี่ๆด้วยค่ะ |
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
</head>
<body>
<?
for($i=0;$i<count($_POST["txtSiteName"]);$i++)
{
เขียนโค๊ด insert ตรงนี้ครับ
}
?>
</body>
</html>
|
|
|
|
|
Date :
2011-07-25 00:26:30 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พี่ค่ะ มัน insert ว่างไปตัวหนึงอะคะ ทำไงให้มัน พอดี
txtSiteName 0 = a
txtSiteName 1 = z
txtSiteName 2 = a
txtSiteName 3 =
ใส่ไป 3 ตัวเองอ่าค่ะ แต่มันเปนโล่งๆอันนึงมันคือไรหรอค่ะ ขอบคุณค่ะ
|
|
|
|
|
Date :
2011-07-25 00:41:48 |
By :
ิีbuaaaaaaaaa |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้ตัวนี้แทนแล้วกันครับ
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
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);
}
}
echo "Save Done. Click <a href='phpMySQLListRecord.php'>here</a> to view.";
mysql_close($objConnect);
?>
</body>
</html>
Go to : PHP MySQL Add/Insert Multiple Record
|
|
|
|
|
Date :
2011-07-25 06:13:36 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|