ช่วยดูcode ให้หน่อยได้ไหมค่ะ มี2 ตาราง แต่ตาราง request ไม่สามารถใส่ข้อมูลลงไปได้ แถวก็ไม่เพิ่มด้วยอ่ะค่ะ
ช่วยดูcode ให้หน่อยได้ไหมค่ะ มี2 ตาราง แต่ตาราง request ไม่สามารถใส่ข้อมูลลงไปได้
แถวก็ไม่เพิ่มด้วยอ่ะค่ะ ขอบคุณมากๆๆ เลยนะค่ะ
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Database Request Form</title>
</head>
<body>
<?php
for($i=1;$i<=3;$i++)
{
if($_POST["requesttype(".$i.")"] != "")
{
$num = $num.",".$_POST["requesttype(".$i.")"];
}
}
if($_POST["requesttypes"] != "")
{
$num = $num.",".$_POST["requesttype(4)"];
}
for($i=1;$i<=12;$i++)
{
if($_POST["objecttype(".$i.")"] != "")
{
$nun = $nun.",".$_POST["objecttype(".$i.")"];
}
}
if($_POST["objecttype(".$i.")"] != "")
{
$nun = $nun.",".$_POST["objecttype(52)"];
}
?>
<br />
<?
include 'connect.php';
$strSQL = "INSERT INTO requestor ";
$strSQL .="(name,department,position,email,office,mobile,requesttype,objecttype) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["name"]."','".$_POST["department"]."','".$_POST["position"]."','".$_POST["mail"]."','".$_POST["officephone"]."' ";
$strSQL .=",'".$_POST["mobilephone"]."','".$num."','".$nun."') ";
$strSQL2 = "INSERT INTO request
(name,database,owner,object,effect,term,from,to,desc,requestor,date)
VALUES
('".$_POST["name"]."','".$_POST["database"]."','".$_POST["owner"]."','".$_POST["object"]."','".$_POST["effect"]."'
,'".$_POST["term"]."','".$_POST["from"]."','".$_POST["to"]."','".$_POST["desc"]."','".$_POST["requestor"]."','".$_POST["date"]."') ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "...บันทึกข้อมูลเรียบร้อยแล้ว...";
}
else
{
echo "Error Save [".$strSQL."]";
}
?>
</body>
</html>Tag : PHP, MySQL
Date :
2011-04-29 14:55:20
By :
ง๊องแง๊ง
View :
734
Reply :
4
connect.php
<?php
$hostname = "localhost"; //ชื่อโฮสต
$users = ""; //ชื่อผู้ใช้
$password = ""; //รหัสผ่าน
$dbname = "database"; //ชื่อฐานข้อมูล
mysql_connect($hostname, $users, $password) or die("cccติดต่อฐานข้อมูลไม่ได้");
mysql_select_db($dbname) or die("xxxเลือกฐานข้อมูลไม่ได้");
// cs is character set to solve the problem when Insert Thai character into table
$cs1 = "SET character_set_results = utf8";
mysql_db_query('database',$cs1) or die('Error query: ' . mysql_error());
$cs2 = "SET character_set_client = utf8";
mysql_db_query('database',$cs2) or die('Error query: ' . mysql_error());
$cs3 = "SET character_set_connection = utf8";
mysql_db_query('database',$cs3) or die('Error query: ' . mysql_error());
?>
Date :
2011-04-29 14:58:19
By :
ง๊องแง๊ง
$objQuery = mysql_query($strSQL); <<<<<< ตรงนี้ Run แค่คิวรี่ของ $strSQL อันเดียวเองครับ ...... $strSQL2 ยังไม่มีการ Run
Date :
2011-04-29 15:16:33
By :
Songkram
ขอบคุณค่ะ ^^
Date :
2011-04-29 17:03:52
By :
ง๊องแง๊ง
Run $strSQL2 แล้วค่ะ แต่ก็ยังไม่ได้
Date :
2011-05-03 11:05:40
By :
ง๊องแง๊ง
Load balance : Server 01