|
|
|
++ทราบการ insert ข้อมูลค่ะ++ อยากทราบโค้ดการ insert ข้อมูลคงละตารางในฐานข้อมูลค่ะ |
|
|
|
|
|
|
|
เอาโค๊ดมาให้ดูหน่อยค่ะ
จะได้ช่วยได้
|
|
|
|
|
Date :
2010-01-28 09:58:44 |
By :
SAUACTH |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังไม่ได้เขียนโค้ดinsertค่ะเขียนไว้แต่เช็ค
|
|
|
|
|
Date :
2010-01-28 10:02:53 |
By :
axiom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$str="INSERT INTO ชื่อtable VALUES('ฟิลด์ที่1', 'ฟิลด์ที่2' , 'ฟิลด์ที่3' , 'ฟิลด์ที่n..')";
$result=mysql_query($str);
|
|
|
|
|
Date :
2010-01-28 10:03:48 |
By :
adaaugusta |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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");
$strSQL = "INSERT INTO customer ";
$strSQL .="(CustomerID,Name,Email,CountryCode,Budget,Used) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["txtCustomerID"]."','".$_POST["txtName"]."','".$_POST["txtEmail"]."' ";
$strSQL .=",'".$_POST["txtCountryCode"]."','".$_POST["txtBudget"]."','".$_POST["txtUsed"]."') ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "Save Done.";
}
else
{
echo "Error Save [".$strSQL."]";
}
mysql_close($objConnect);
?>
</body>
</html>
Ref : PHP MySQL Add/Insert Record
|
|
|
|
|
Date :
2010-01-28 10:15:20 |
By :
pokultra |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|