|
|
|
อยากให้ เมื้อคลิกที่ Checkbox แล้ว ข้อมูลถูกบันทึกทันที |
|
|
|
|
|
|
|
ajax ช่วยท่านได้ครับ ลองศึกษาบทเรียนในเว็บนี้ดูครับ เยอะแยะ อิๆ
|
ประวัติการแก้ไข 2011-08-29 15:50:06
|
|
|
|
Date :
2011-08-29 15:49:31 |
By :
vissarud |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แบบนี้ป่าว
test1 [ ]
test2 [ ]
test3 [ ]
เมื่อติ๊กช่องไหนก็ให้มันเซฟจุดนั้นจุดเดียวแบบนี้หรือป่าว
ถ้าแบบนี้ก็ ajax ตาม rep ด้านบนบอกคับ
แต่ถ้าเป็นแบบติ๊กแล้วเซฟทั้งหมดก็ใช้ java ก็ทำงานได้คับ
|
|
|
|
|
Date :
2011-08-29 15:55:25 |
By :
siammbk |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แบบติ๊กแล้วเซฟเลย ทีละอัน ๆ . . . ถ้าใช้ ajax คือผมยังใช่ ajax ไม่เป็นอ่าคับ ได้แต่เอาในตัวอย่างเว็บนี้ มาแปลงเอา . . ยังแก้อะไรมากไม่ได้คับ
|
|
|
|
|
Date :
2011-08-29 16:00:43 |
By :
Necrotorture |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (form.php)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<script language="JavaScript">
function onSave()
{
if(confirm('Do you want to save ?')==true)
{
return true;
}
else
{
return false;
}
}
</script>
<form name="frmMain" action="save.php" method="post" OnSubmit="return onSave();">
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM customer";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">CustomerID </div></th>
<th width="98"> <div align="center">Name </div></th>
<th width="198"> <div align="center">Email </div></th>
<th width="97"> <div align="center">CountryCode </div></th>
<th width="59"> <div align="center">Budget </div></th>
<th width="71"> <div align="center">Used </div></th>
<th width="30"> <div align="center">Select </div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><div align="center"><?=$objResult["CustomerID"];?></div></td>
<td><?=$objResult["Name"];?></td>
<td><?=$objResult["Email"];?></td>
<td><div align="center"><?=$objResult["CountryCode"];?></div></td>
<td align="right"><?=$objResult["Budget"];?></td>
<td align="right"><?=$objResult["Used"];?></td>
<td align="center"><input type="checkbox" name="chkEmail[]" value="<?=$objResult["Email"];?>"></td>
</tr>
<?
}
?>
</table>
<?
mysql_close($objConnect);
?>
<input type="submit" name="btnSave" value="Save">
</form>
</body>
</html>
Code (save.php)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
for($i=0;$i<count($_POST["chkEmail"]);$i++)
{
if($_POST["chkEmail"][$i] != "")
{
$strSQL = "INSERT INTO table_name (Mail) VALUES ('".$_POST["chkEmail"][$i]."')";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
}
}
echo "Record Insert.";
mysql_close($objConnect);
?>
</body>
</html>
Go to : PHP Multiple Checkbox
|
|
|
|
|
Date :
2011-08-29 17:22:37 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณคับพี่วิน .. แล้ว ถ้าผมเอา Ajax Search มาใช้แล้ว แล้วอยากเพิ่ม ข้างบนเข้าไป . . ต้องทำยังไงคับ
|
|
|
|
|
Date :
2011-08-30 09:27:54 |
By :
Necrotorture |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|