|
|
|
เราจะทำยังไง ให้ เพิ่ม ลบ แก้ไข บันทึก ในเพจเดียวกันได้ |
|
|
|
|
|
|
|
ขอผมแนวนี้นะครับรอท่านอื่น ต่อไปนะครับหลายๆแนวทาง
Code (PHP)
<?
if($_GET["Action"]=="Delete")
{
$sql = "delete from rs_note where id='".$_GET["id"]."'";
$dbquery = mysql_db_query($dbname, $sql);
}
if($_GET["Action"]=="Save")
{
$sql = "insert into rs_note (id, data, name,custom) Values ('','$_POST[dataa]','$_POST[namea]','$_POST[customera]')";
$dbquery = mysql_db_query($dbname, $sql);
}
?>
ในกรณี delete
<td ><div align="center"><a href="<?=$_SERVER['PHP_SELF'];?>?Action=Delete&id=<?=$result["id"];?>" onclick="return confirm('ข้อมูลที่สำคัญของคุณ.<?=$result["custom"]; ?> ?');" >ลบ</a></div>
</td>
ส่วนในกรณี Add ก็ กำหนด action ที่ <form>
Code (PHP)
<input name="Submit" type="image" src="images/add_16.png" id="Submit" />
<form name="form1" method="post" action="<?=$_SERVER['PHP_SELF'];?>?id=<?=$_GET["id"];?>&Action=Save" >
|
|
|
|
|
Date :
2010-08-19 21:28:37 |
By :
Mr.Poo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
|
|
|
|
|
Date :
2010-08-20 00:25:59 |
By :
sakabuto |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แจ่มเลยคับ
|
|
|
|
|
Date :
2010-08-20 04:08:04 |
By :
text_292 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|