|
|
|
ต้องการที่จะลบข้อมูลโดยที่ เอา Checkbox เป็นตัวกำหนด คือ ถ้าเครื่องหมายถูกออก ให้ทำการลบข้อมูล |
|
|
|
|
|
|
|
จัดให้ซะหน่อยครับ อันนี้ถ้าไม่ติก Checkbox คือ Delete
Code (test.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="test2.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>
<?
$i=0;
while($objResult = mysql_fetch_array($objQuery))
{
$i++;
?>
<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" id="chkDel<?=$i;?>" name="chkDel[]" value="<?=$objResult["CustomerID"];?>" OnClick="if(this.checked){document.frmMain.txtDel<?=$i;?>.value='';} else { document.frmMain.txtDel<?=$i;?>.value='<?=$objResult["CustomerID"];?>'; }">
<input type="hidden" id="txtDel<?=$i;?>" name="txtDel[]" value="<?=$objResult["CustomerID"];?>">
</td>
</tr>
<?
}
?>
</table>
<?
mysql_close($objConnect);
?>
<input type="submit" name="btnDelete" value="Delete">
</form>
</body>
</html>
Code (test2.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["txtDel"]);$i++)
{
if($_POST["txtDel"][$i] != "")
{
$strSQL = "DELETE FROM customer ";
$strSQL .="WHERE CustomerID = '".$_POST["txtDel"][$i]."' ";
$objQuery = mysql_query($strSQL);
}
}
echo "Record Deleted.";
mysql_close($objConnect);
?>
</body>
</html>
|
|
|
|
|
Date :
2012-01-11 17:16:27 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
foreach($_POST["chk"] As $value){
$id_application=$value;
for($i=0;$i<count($_POST["chk"]);$i++)
{
if($_POST["chk"][$i] == "")
{
$sql_de="delete from tbl_application where id_app='$id_application'";
$sqlquery_de=mysql_db_query($dbname,$sql_de);
}
}
อันนี้มันลบแต่อันที่ คลิก ต้องทำไงไงเหรอ ที่ติกออกให้ลบ
|
|
|
|
|
Date :
2012-01-11 18:29:46 |
By :
TT |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เขียนให้แล้วครับ คุณไม่ได้ดูเหรอครับ
|
|
|
|
|
Date :
2012-01-11 20:43:27 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำแล้วแต่ทำไมมันลบเฉพาะอันที่ ติกไว้ ต้องทำยังไงเหรอคับ
|
|
|
|
|
Date :
2012-01-12 00:24:11 |
By :
TT |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|