|
|
|
ดูโค้ดส่วนนี้ให้หน่อยค่ะ insert ยังไงก้อทำไม่ได้ไม่รู้ว่าคำสั่งมันถูกไหม |
|
|
|
|
|
|
|
Code (PHP)
<?php
$insert=$_POST[insert];
if($insert !=""){
mysql_query ("INSERT INTO psumary ( name, address, mail, tel, mobile, pname,pdes,vision,technohard,technosofe,special,oplan1,oplan2,oplan3,oplan4,oplan5,oplan6,oplan7,oplan8,oplan9,oplan10,oplan11,oplan12,mplan_tar,mplan_com,mplan_market,oteam_manage,oteam_technic,oteam_marksale,oteam_other,tinvestment )
VALUES($name,$address,$mail,$tel,$mobile,$pname,$pdes,$vision,$technohard,$technosofe,$special,$oplan1,$oplan2,$oplan3,$oplan4,
$oplan5,$oplan6,oplan7,$oplan8,$oplan9,$oplan10,$oplan11,$oplan12,$mplan_tar,$mplan_com,$mplan_market,$oteam_manage,$oteam_technic,$oteam_marksale,$oteam_other,$tnivestment);");
mysql_query($sql) or die("cannot insert");
}
?>
Tag : - - - -
|
|
|
|
|
|
Date :
2009-11-11 14:55:13 |
By :
bumbim49 |
View :
895 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มัน error อะไรหรอครับ
หรือลองดูอย่างนี้ไปปรับใช้ดู
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 :
2009-11-11 15:00:25 |
By :
pokultra |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo $sql
ออกมาดู แล้วก้อบไปรันใน phpmyadmin ดูนะครับว่า error อาราย
หรือ ใช้แบบน้ก็ไล่ง่ายดี
Code (PHP)
$sql="insert into customer set CustName ='".$CustName."',CustLogin ='".$CustLogin."',CustEmail ='".$Email."',CustAddress ='".$CustAddress."',CustTumbon ='".$CustTumbon."',CustUmper ='".$CustUmper."',CustProvince ='".$CustProvince."',CustPostal ='".$CustPostal."',CustPhone = '" .$CustPhone."' ,CustFax ='".$CustFax."' ,CustPwd ='".$CustPwd."',CustPay ='".$HowToPay."',CustUpdateDate ='".date("Y-m-d H:i:s")."' ,qua ='".$QA."',arn ='".$ARNS."' ";
mysql_query($sql) or die (error());
|
|
|
|
|
Date :
2009-11-11 15:03:05 |
By :
Sek-Artdrinker |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลอง echo ดูค่าที่ได้จากตัวแปลหรือยังคับ ว่ามาครบทุกค่าเหรอป่าว
เเล้วก็บางทีลองดูพวก PK , Fk ด้วยคับ ว่ามีซ้ำกันหรือป่าว
|
|
|
|
|
Date :
2009-11-11 15:03:37 |
By :
culdcept |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
oplan7 ไม่มี $ แล้วต้องครอบด้วย ' ด้วย เช่น VALUES('$name','$address');
|
|
|
|
|
Date :
2009-11-11 15:04:21 |
By :
plakrim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|