|
|
|
สอบถามการทำ checkbox ให้สามารถลบข้อมูลได้หลาย ๆ แถว คลิกที่ checkbox ของแถวที่ต้องการ |
|
|
|
|
|
|
|
Code (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>
Code (phpMySQLDeleteMultiRecord.php)
PHP MySQL Multiple Checkbox Delete Record ตัวอย่างนี้จะเป็นการเขียนโปรแกรม PHP กับ MySQL เพื่อลบข้อมูลโดยใช้ Checkbox เพื่อที่จะสามารถเลือกได้หลายรายและสามารถลบข้อมูลได้หลายรายการ
ตัวอย่าง
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
PHP & MySQL
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 :
2009-10-25 21:36:59 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//////////// Check All Clear All //////////////
function cSet(clist,n){
for(var i=0;i<clist.length;i++){
clist[i].checked = n;
}
}
Check Clear All..
<hr />
<form name="form1" method="post">
<input type="button" onclick="cSet(this.form['c[]'],1);" value="check all" />
<input type="button" onclick="cSet(this.form['c[]'],0);" value="clear all" />
<!-- value หมายถึง id ของ record -->
<input type="checkbox" name="c[]" value="1" />
<input type="checkbox" name="c[]" value="2" />
<input type="checkbox" name="c[]" value="3" />
<input type="submit" value="enter" />
</form>
test โดย พริ้น array ออกมาดู
echo '<pre>'; print_r($c); echo '</pre>';
ประยุกต์เอานะครับ
cradit: p' a-mac มั้ง หุ หุ จำไม่ได้ว่าไปเอาของครัยมา แต่จำได้ว่าเอามาจากเว็บนี้แหละครับ
|
|
|
|
|
Date :
2009-10-25 21:39:47 |
By :
DownsTream |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำตาม link ที่พี่วินให้มา ใน no.2
แล้ววถ้าหากต้องการลบรูปที่เราทำการ upload ไว้ในโฟลเดอร์ ตามจำนวนที่ลบ Record ออกไปด้วย จะต่องทำยังไงอ่ะคะ
ซึ่งรูปจะ upload ลง 2 โฟลเดอร์ค่ะ คือ โฟลเอร์รูปขนาดปกติ และโฟลเดอร์รูปที่ resize แล้ว และเปลี่ยนชื่อรูปใหม่เปนชื่อเดียวกับรหัส เช่น รหัส 5 ชื่อรูปก้อ 5.xxx น่ะค่ะ
รบกวนพี่ๆ ช่วยหน่อยนะค๊าาาา
|
|
|
|
|
Date :
2010-02-08 16:54:21 |
By :
fumio |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รบกวนด้วยค่ะ
|
|
|
|
|
Date :
2010-02-08 21:03:11 |
By :
fumio |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|