|
|
|
จะ insert ข้อมูลไปเก็บทั้ง 2 ตาราง พร้อมกัน แต่เกิดปัญหา รายละเอียดด้านในครับ |
|
|
|
|
|
|
|
ตาราง 1 ชื่อ data_conf
มี id_conf เป็น primary key เป็น auto_increment
ตารางที่ 2 total_conf
id_total | id_conf |
1 0
2 0
3 0
ปัญหา คือ ผมจะเอาค่า id_conf จากตารางที่ 1 มาใส่ในฟิลด์ id_conf ในตารางที่ 2 ทำไมเป็น 0 ครับ
Code (PHP)
<?php
$hour=$_POST['hour'];
$sum_hour=$_POST['sum_hour'];
$total_hour=$hour+$sum_hour;
$register=$_POST['register'];
$sum_register=$_POST['sum_register'];
$total_register=$register+$sum_register;
$fare=$_POST['fare'];
$sum_fare=$_POST['sum_fare'];
$total_fare=$fare+$sum_fare;
$rent=$_POST['rent'];
$sum_rent=$_POST['sum_rent'];
$total_rent=$rent+$sum_rent;
$relate=$_POST['relate'];
$sum_relate=$_POST['sum_relate'];
$total_relate=$relate+$sum_relate;
$other_mon=$_POST['other_mon'];
$sum_other_mon=$_POST['sum_other_mon'];
$total_other_mon=$other_mon+$sum_other_mon;
if(($subject=="")or($date=="")or($hour=="")or($location=="")or($staff=="")or($register=="")or($fare=="")or($rent=="")or($relate=="")or($other_mon=="")or($other_text==""))
{
echo "<font Size=3 color=#FF0000>***กรุณากรอกข้อมูลให้ครบ***</font>";
}
else
{
//กำหนดตัวแปรเพื่อนำไปใช้งาน
$hostname = "localhost"; //ชื่อโฮสต์
$user = "root"; //ชื่อผู้ใช้
$password = "root"; //รหัสผ่าน
$dbname = "holiday"; //ชื่อฐานข้อมูล
// เริ่มติดต่อฐานข้อมูล
mysql_connect($hostname, $user, $password) or die("ติดต่อฐานข้อมูลไม่ได้");
mysql_query('SET CHARACTER SET utf8');
mysql_query('SET NAMES utf8');
// เลือกฐานข้อมูล
mysql_select_db($dbname) or die("เลือกฐานข้อมูลไม่ได้");
// คำสั่ง SQL และสั่งให้ทำงาน
$sql1 = "insert into data_conf (id_user,subject ,round_year,date,location,staff,hour,register,fare,rent,relate,other_mon,other_text,sum_hour,sum_register,sum_fare,sum_rent,sum_relate,sum_other_mon ,total_hour,total_register,total_fare,total_rent,total_relate,total_other_mon)
values ('$id_user','$subject','$round_year','$date','$location','$staff','$hour','$register','$fare','$rent','$relate','$other_mon','$other_text','$sum_hour','$sum_register','$sum_fare','$sum_rent','$sum_relate','$sum_other_mon','$total_hour','$total_register','$total_fare','$total_rent','$total_relate','$total_other_mon')"; // กำหนดคำสั่ง SQL เพื่อเพิ่มข้อมูลแบบคีย์ในคำสั่ง SQL
$dbquery1 = mysql_db_query($dbname, $sql1);
$sql2 = "insert into total_conf (id_user,id_conf,total_hour,total_register,total_fare,total_rent,total_relate,total_other_mon) values ('$id_user','$id_conf','$total_hour','$total_register','$total_fare','$total_rent','$total_relate','$total_other_mon')"; // กำหนดคำสั่ง SQL เพื่อเพิ่มข้อมูลแบบคีย์ในคำสั่ง SQL
$dbquery2 = mysql_db_query($dbname, $sql2);
// ปิดการติดต่อฐานข้อมูล
mysql_close();
Tag : PHP, MySQL
|
ประวัติการแก้ไข 2011-10-14 15:01:52
|
|
|
|
|
Date :
2011-10-14 15:00:44 |
By :
au_mutd |
View :
2178 |
Reply :
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หลังจากที่ insert table แรกที่เป็น auto_increment ให้ใช้ $id = mysql_insert_id(); เอาไปใช้ครับ
|
|
|
|
|
Date :
2011-10-14 15:29:34 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โทษทีครับพี่เอาไปใส่ตรงไหนครับผม
|
|
|
|
|
Date :
2011-10-14 15:44:26 |
By :
au_mutd |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$id = mysql_insert_id();
ใส่บรรทัดที่ 60
|
|
|
|
|
Date :
2011-10-15 08:32:24 |
By :
nimporn |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ
|
|
|
|
|
Date :
2011-10-16 16:30:53 |
By :
au_mutd |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้ว ถ้าเป็น vb.net(windows application)ฐานข้อมูล sqlserver2000 ละครับ ต้องทำยังไง
|
ประวัติการแก้ไข 2014-03-11 09:36:42
|
|
|
|
Date :
2014-03-11 09:36:05 |
By :
burnquist |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|