|
|
|
ขอ code ลบแบบ checkbox หลายรายการครับ เหมือนพวกอีเมล์ครับ สามารถเลือกได้หลายรายการเพื่อลบ |
|
|
|
|
|
|
|
อื่มเด่วหาให้นะ
|
|
|
|
|
Date :
7 พ.ย. 2551 13:16:22 |
By :
สนธิ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?//------------------------------ test.php ?>
<form action="test.php" name="form1" method="post">
<input type="checkbox" value="101" name="num[]" /> 101<br />
<input type="checkbox" value="102" name="num[]" checked="checked" /> 102<br />
<input type="checkbox" value="103" name="num[]" /> 103<br />
<input type="checkbox" value="104" name="num[]" /> 104<br />
<input type="submit" />
</form>
<?
for ($i = 0; $i < count($_POST['num']); $i++) {
$sql="delete from test where id='".$_POST['num'][$i]."' ";
echo $sql.'<br />';
}
?>
ประมาณนี้หรือเปล่าคับ
|
|
|
|
|
Date :
19 พ.ย. 2551 14:47:17 |
By :
Grim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โทษทีครับผมไม่ได้ดูที่หัวข้อ นึกว่า PHP
|
|
|
|
|
Date :
19 พ.ย. 2551 15:18:38 |
By :
Grim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
AspAccessMultiDeleteRecordList.asp
<html>
<head>
<title>ThaiCreate.Com ASP & Microsoft Access 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="AspAccessMultiDeleteRecord.asp" method="post" OnSubmit="return onDelete();">
<%
Dim Conn,strSQL,objRec
Set Conn = Server.Createobject("ADODB.Connection")
Conn.Open "DRIVER=Microsoft Access Driver (*.mdb);DBQ=" & Server.MapPath("mydatabase.mdb"),"" , ""
strSQL = "SELECT * FROM customer "
Set objRec = Server.CreateObject("ADODB.Recordset")
objRec.Open strSQL, Conn, 1,3
%>
<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 Not objRec.EOF
%>
<tr>
<td><div align="center"><%=objRec.Fields("CustomerID").Value%></div></td>
<td><%=objRec.Fields("Name").Value%></td>
<td><%=objRec.Fields("Email").Value%></td>
<td><div align="center"><%=objRec.Fields("CountryCode").Value%></div></td>
<td align="right"><%=objRec.Fields("Budget").Value%></td>
<td align="right"><%=objRec.Fields("Used").Value%></td>
<td align="center"><input type="checkbox" name="chkDel" value="<%=objRec.Fields("CustomerID").Value%>"></td>
</tr>
<%
objRec.MoveNext
Wend
%>
</table>
<%
objRec.Close()
Conn.Close()
Set objRec = Nothing
Set Conn = Nothing
%>
<input type="submit" name="btnDelete" value="Delete">
</form>
</body>
</html>
Screenshot
AspAccessMultiDeleteRecord
<html>
<head>
<title>ThaiCreate.Com ASP & Microsoft Access Tutorial</title>
</head>
<body>
<%
Dim Conn,strSQL,objExec
Set Conn = Server.Createobject("ADODB.Connection")
Conn.Open "DRIVER=Microsoft Access Driver (*.mdb);DBQ=" & Server.MapPath("mydatabase.mdb"),"" , ""
For Each chkVol in Request.Form("chkDel")
strSQL = ""
strSQL = strSQL&"DELETE FROM customer "
strSQL = strSQL&"WHERE CustomerID = '"&chkVol&"' "
Set objExec = Conn.Execute(strSQL)
Next
Response.write("Record Deleted.")
Conn.Close()
Set objExec = Nothing
Set Conn = Nothing
%>
</body>
</html>
Ref : ASP Microsoft Access Multiple Checkbox Delete Record
|
|
|
|
|
Date :
2009-10-15 23:47:08 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|