|
|
|
ต้องการสอบถามเรื่องการส่งค่าลงฐานข้อมูลทีละหลาย ๆ rows |
|
|
|
|
|
|
|
[html]
<input type="checkbox" name="id[]" value="1" />
<input type="checkbox" name="id[]" value="2" />
<input type="checkbox" name="id[]" value="3" />
<input type="checkbox" name="id[]" value="4" />
<input type="checkbox" name="id[]" value="5" />
[/html]
$id_arr = $_POST['id'];
if ( is_array($id_arr) ) {
foreach ( $id_arr as $id ) {
$sql = "insert into table where id = " . intval($id);
...
...
}
} else {
die("ไม่มีการส่งค่าเข้ามา หรือฟอร์มไม่ได้เป็น array (id[])");
}
ทำฟอร์มให้เป็น array ตามตัวอย่าง
เข้าใจแล้วนะ?
|
|
|
|
|
Date :
2011-03-22 06:25:06 |
By :
mr.v |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตัวอย่างน่ะครับน่าจะปรับแต่งได้ไม่ยากครับ
phpMySQLDeleteMultiRecordList.php
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<script language="JavaScript">
function onDelete()
{
if(confirm('Do you want to delete ?')==true)
{
return true;
}
else
{
return false;
}
}
</script>
<form name="frmMain" action="phpMySQLDeleteMultiRecord.php" method="post" OnSubmit="return onDelete();">
<?
$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">Delete </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="chkDel[]" value="<?=$objResult["CustomerID"];?>"></td>
</tr>
<?
}
?>
</table>
<?
mysql_close($objConnect);
?>
<input type="submit" name="btnDelete" value="Delete">
</form>
</body>
</html>
Screenshot
phpMySQLDeleteMultiRecord.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["chkDel"]);$i++)
{
if($_POST["chkDel"][$i] != "")
{
$strSQL = "DELETE FROM customer ";
$strSQL .="WHERE CustomerID = '".$_POST["chkDel"][$i]."' ";
$objQuery = mysql_query($strSQL);
}
}
echo "Record Deleted.";
mysql_close($objConnect);
?>
</body>
</html>
Ref : PHP MySQL Multiple Checkbox Delete Record
|
|
|
|
|
Date :
2011-03-22 06:26:55 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณพี่ๆมากมากเลย แล้วถ้าจะพัฒนาต่อเปนแบบว่า ติกเกรดแล้วกด submit แล้วชื่อนักศึกษาคนนั้นจะหายไป ต้องทำไงดี
เปนแนวทางให้ผมไปศึกษา หรือมีตัวอย่างก้ขอบคุณมากๆๆๆๆๆ
|
|
|
|
|
Date :
2011-03-22 13:26:30 |
By :
noobilian |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|