ฟอร์ม 1 ฟอร์ม แต่ สามารถ insert ข้อมูลได้ 2 table ทำไงค่ะ
อยากให้ข้อมูลรายละเอียด สมาชิก insert table member
รายละเอียด สินค้า insert table basket_item
แต่โค้ด นี้ สามารถ insert รายละเอียดสินค้าได้แล้ว และ update สถานะ ตาราง basket ได้แล้วด้วย
อยากทราบว่าเราจะกำหนดยังไงให้ insert ข้อมูลเข้าไปใน table member ได้
$sql= "INSERT INTO basket_item (bk_at, bk_id ,product,size,paper,page,pvc,color,qty,price,total,picture,bk_status)";
$sql.= "VALUES ('$bk_at','$bk_date','$product','$size','$paper','$page','$pvc','$color','$qty','$price','$total','".$_FILES["picture"]["name"]."','รอจ่าย')";
mysql_query($sql,$conn)
or die(" +++ รหัสซ้ำ พบในฐานข้อมูลแล้ว +++ ") . mysql_error();
$sql = "update basket set bk_status='รอจ่าย' where bk_id='$bk_date'";
mysql_query($sql,$conn)
or die("ไม่พบในฐานข้อมูลแล้ว ") . mysql_error();
$sql1 = "INSERT INTO member (me_address,me_amphure,me_province,me_zipcode,me_phone) ";
$sql1.="VALUES ('$me_address','$me_amphure','$me_province','$me_zipcode','$me_phone')";
mysql_close($conn);Tag : PHP, MySQL, CakePHP
Date :
2011-08-18 10:21:00
By :
chadjan
View :
1133
Reply :
5
ตัวอย่างจากบทเรียนครับ
ทำเป็นform แล้วส่งไปอีกไฟล์หนึ่งครับ เพื่อเช็ค
phpMySQLCheckExistRecordAddForm.php
01.<html>
02.<head>
03.<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
04.</head>
05.<body>
06.<form action="phpMySQLCheckExistRecordAddSave.php" name="frmAdd" method="post">
07.<table width="600" border="1">
08.<tr>
09.<th width="91"> <div align="center">CustomerID </div></th>
10.<th width="160"> <div align="center">Name </div></th>
11.<th width="198"> <div align="center">Email </div></th>
12.<th width="97"> <div align="center">CountryCode </div></th>
13.<th width="70"> <div align="center">Budget </div></th>
14.<th width="70"> <div align="center">Used </div></th>
15.</tr>
16.<tr>
17.<td><div align="center"><input type="text" name="txtCustomerID" size="5"></div></td>
18.<td><input type="text" name="txtName" size="20"></td>
19.<td><input type="text" name="txtEmail" size="20"></td>
20.<td><div align="center"><input type="text" name="txtCountryCode" size="2"></div></td>
21.<td align="right"><input type="text" name="txtBudget" size="5"></td>
22.<td align="right"><input type="text" name="txtUsed" size="5"></td>
23.</tr>
24.</table>
25.<input type="submit" name="submit" value="submit">
26.</form>
27.</body>
28.</html>
phpMySQLCheckExistRecordAddSave.php
01.<html>
02.<head>
03.<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
04.</head>
05.<body>
06.<?
07.$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
08.$objDB = mysql_select_db("mydatabase");
09.$strSQL = "SELECT * FROM customer WHERE CustomerID = '".$_POST["txtCustomerID"]."' ";
10.$objQuery = mysql_query($strSQL);
11.$objResult = mysql_fetch_array($objQuery);
12.if($objResult)
13.{
14.echo "CustomerID already exist.";
15.}
16.else
17.{
18.
19.$strSQL = "";
20.$strSQL = "INSERT INTO customer ";
21.$strSQL .="(CustomerID,Name,Email,CountryCode,Budget,Used) ";
22.$strSQL .="VALUES ";
23.$strSQL .="('".$_POST["txtCustomerID"]."','".$_POST["txtName"]."','".$_POST["txtEmail"]."' ";
24.$strSQL .=",'".$_POST["txtCountryCode"]."','".$_POST["txtBudget"]."','".$_POST["txtUsed"]."') ";
25.$objQuery = mysql_query($strSQL);
26.if($objQuery)
27.{
28.echo "Save Done.";
29.}
30.else
31.{
32.echo "Error Save [".$strSQL."]";
33.}
34.}
35.mysql_close($objConnect);
36.?>
37.</body>
38.</html>
Date :
2011-08-18 10:36:23
By :
sambrazil
ถ้า2 table ก้อ Queryมา2ครั้ง แล้วใช้ and or เชื่อมตรง ifมั้ง
รอผู้รู้มาตอบอีกที
Date :
2011-08-18 10:41:43
By :
sambrazil
ค่ะ เด๋วจะลองดู
ขอบคุณนะค่ะ
Date :
2011-08-18 10:50:31
By :
chadjan
query 2 round
Date :
2011-08-18 11:06:29
By :
Dragons_first
Load balance : Server 02