|
|
|
สร้างฟอร์อแก้ไขข้อมูล แต่ติดที่ update ไม่ได้ค่ะ ช่วยดู code ให้หน่อยค่ะ |
|
|
|
|
|
|
|
Code (PHP)
<?
$con_db=mysql_connect("localhost","root","password") or die("Cannot connect db server");
$select_db=mysql_select_db("drug");
mysql_query("SET NAMES UTF8");
$strSQL = "UPDATE tbl_event SET ";
$strSQL .="(event_title,event_start,event_end,event_url,event_allDay)";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["txtevent_title"]."','".$_POST["txtevent_start"]."','".$_POST["txtevent_end"]."' ";
$strSQL .=",'".$_POST["txtevent_url"]."','".$_POST["txtevent_allDay"]."') ";
$strSQL .="WHERE event_id = '".$_GET["event_id"]."' ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "Save Done";
}
else
{
echo "Error Save [".$strSQL."]";
}
//mysql_close($objConnect);
?>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2012-02-17 14:32:17 |
By :
น้ำ |
View :
938 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองแก้อีกแบบแต่ก็ยัง Error แบบบี้ค่ะ
Code
Error Save [UPDATE tbl_event SET ,event_title = 'สุนทร เนียมหวาน' ,event_start = '2012-02-17 00:00:00' ,event_end = '2012-02-18 01:00:00' ,event_url = 'ลาป่วย' ,event_allDay = 'ทดสอบโปรแกรมyu' WHERE event_id ='' ]
CODE ใหม่ค่ะ
Code (PHP)
<?
$con_db=mysql_connect("localhost","root","password") or die("Cannot connect db server");
$select_db=mysql_select_db("drug");
mysql_query("SET NAMES UTF8");
$strSQL = "UPDATE tbl_event SET ";
$strSQL .=",event_title = '".$_POST["txtevent_title"]."' ";
$strSQL .=",event_start = '".$_POST["txtevent_start"]."' ";
$strSQL .=",event_end = '".$_POST["txtevent_end"]."' ";
$strSQL .=",event_url = '".$_POST["txtevent_url"]."' ";
$strSQL .=",event_allDay = '".$_POST["txtevent_allDay"]."' ";
$strSQL .="WHERE event_id = '".$_GET["event_id"]."' ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "á¡é䢢éÍÁÙÅÊÓàÃç¨.";
}
else
{
echo "Error Save [".$strSQL."]";
}
mysql_close($objConnect);
?>
|
|
|
|
|
Date :
2012-02-17 14:47:04 |
By :
น้ำ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?
$con_db=mysql_connect("localhost","root","password") or die("Cannot connect db server");
$select_db=mysql_select_db("drug");
mysql_query("SET NAMES UTF8");
$strSQL = "UPDATE tbl_event SET ";
$strSQL .="event_title = '".$_POST["txtevent_title"]."' ";
$strSQL .=",event_start = '".$_POST["txtevent_start"]."' ";
$strSQL .=",event_end = '".$_POST["txtevent_end"]."' ";
$strSQL .=",event_url = '".$_POST["txtevent_url"]."' ";
$strSQL .=",event_allDay = '".$_POST["txtevent_allDay"]."' ";
$strSQL .="WHERE event_id = '".$_GET["event_id"]."' ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "Save Done";
}
else
{
echo "Error Save [".$strSQL."]";
}
mysql_close($con_db);
?>
ลองอันนี้ดูก่อนนะครับ
แล้วก็อีกอย่างดูแล้วค่า event_id จะรับไม่ได้นะครับ ลองดูว่าส่งค่ามาถูกรึป่าว
|
|
|
|
|
Date :
2012-02-17 14:54:47 |
By :
akkaneetha |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|