จะ insert ข้อมูลไปพร้อมกัน 2 ตารางแต่ดันไปแค่ตารางเดียวรบกวนช่วยชี้แนะหน่อยครับ
ตาราง total ข้อมูลมาครบ
แต่ตาราง data ไม่มีเลยครับ
ขอบคุณล่วงหน้าครับ....
Code (PHP)
<html>
<head>
<title>บันทึกข้อมูล</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<STYLE type=text/css>
A:link {COLOR: #0000FF; TEXT-DECORATION: none}
A:visited {COLOR: #660000; TEXT-DECORATION: none}
A:hover {COLOR: #ff4500; TEXT-DECORATION: none}
</STYLE>
<body>
<?php
$hour=$_POST['hour'];
$sum_hour=$_POST['sum_hour'];
$total_hour=$hour+$sum_hour;
echo "$total_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;
//กำหนดตัวแปรเพื่อนำไปใช้งาน
$hostname = "localhost"; //ชื่อโฮสต์
$user = "root"; //ชื่อผู้ใช้
$password = "root"; //รหัสผ่าน
$dbname = "conf"; //ชื่อฐานข้อมูล
// เริ่มติดต่อฐานข้อมูล
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 (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 (id_user,total_hour,total_register,total_fare,total_rent,total_relate,total_other_mon) values ('$id_user','$total_hour','$total_register','$total_fare','$total_rent','$total_relate','$total_other_mon')"; // กำหนดคำสั่ง SQL เพื่อเพิ่มข้อมูลแบบคีย์ในคำสั่ง SQL
$dbquery2 = mysql_db_query($dbname, $sql2);
// ปิดการติดต่อฐานข้อมูล
mysql_close();
/*if ($name == "") {
echo "โปรดใส่ชื่อด้วย";
exit();
}
if ($lastname == "") {
echo "โปรดใส่นามสกุลด้วย";
exit();
}
if ($position == "") {
echo "โปรดใส่ตำแหน่งด้วย";
exit();
}
if ($department == "") {
echo "โปรดใส่หน่วยงานด้วย";
exit();
}*/
?>
<div align="center">
</div>
</body>
</html>
Tag : PHP, MySQL
Date :
2011-10-04 11:56:17
By :
au_mutd
View :
769
Reply :
2
คุณลืมใส่ "วงเล็บปิด" ) ครับ
Code (PHP)
$sql1 = "insert into data (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'";
Date :
2011-10-04 11:59:11
By :
arm8957
ขอบพระคุณมากจริงๆครับหามาทั้งวันแล้ว
Date :
2011-10-04 12:01:54
By :
au_mutd
Load balance : Server 02