|
|
|
จากบทความ "PHP MySQL Multiple Checkbox Delete Record" ถ้าผมต้องการเมื่อ ติ๊กถูกที่ Checkbox แล้วให้มีการนับจำนวนว่าเลือกไปเท่าไร |
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
$(document).ready(function(e) {
var allcheckbox = $('input:checkbox').length;
var checked = 0;
$('#all').html(allcheckbox);
$('#checked').html(checked);
$('input:checkbox').change(function(e) {
checked = $('input:checkbox:checked').length
$('#all').html(allcheckbox);
$('#checked').html(checked);
});
});
</script>
</head>
<body>
<? for($i=1;$i<=10;$i++){?>
<p>
<input type="checkbox" name="Mybox[]" id="Mybox[]">
<label for="Mybox[]">Checkbox </label>
</p>
<? }?>
<p>ทั้งหมด <span id="all"></span> เลือกไปแล้ว <span id="checked"></span></p>
</body>
</html>
|
|
|
|
|
Date :
2013-01-10 10:21:33 |
By :
Krungsri |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณ คุณ "Krungsri" มากๆครับผม
เดี่ยวขอลองเอาไปทำดูก่อนนะครับผม
|
|
|
|
|
Date :
2013-01-10 10:32:28 |
By :
osapp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อันนี้จากตัวอย่างเลยครับ
Code (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;
}
}
function OnCount(chk)
{
if(chk.checked)
{
document.frmMain.txtSelectItem.value++;
}
else
{
document.frmMain.txtSelectItem.value--;
}
}
</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>
<?
$row = 0;
while($objResult = mysql_fetch_array($objQuery))
{
$row++;
?>
<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"];?>" OnClick="OnCount(this);"></td>
</tr>
<?
}
?>
</table>
<?
mysql_close($objConnect);
?>
Selected : <input type="text" name="txtSelectItem" value="0"> <br>
All Item : <input type="text" name="txtAllItem" value="<?=$row;?>">
<input type="submit" name="btnDelete" value="Delete">
</form>
</body>
</html>
|
|
|
|
|
Date :
2013-01-10 10:47:37 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากๆเลยครับพี่วิน
ขอลองเอาไปประยุกต์ใช้ก่อนนะครับพี่
ขอบคุณอีกครั้ง สำหรับทุกๆความคิดเห็น ขอบคุณสำหรับความรู้ดีดี
|
ประวัติการแก้ไข 2013-01-10 11:01:09
|
|
|
|
Date :
2013-01-10 11:00:13 |
By :
osapp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำได้แล้วครับพี่วิน ขอบคุณอีกครั้งครับผม
|
|
|
|
|
Date :
2013-01-10 11:40:17 |
By :
osapp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เดียวลองเอาไปใช้กับ checkbox All ดูครับผม
|
|
|
|
|
Date :
2013-01-10 11:52:12 |
By :
osapp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จัดไป
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<script language="JavaScript">
function ClickCheckAll(vol)
{
var i=1;
document.frmMain.txtSelectItem.value = 0;
for(i=1;i<=document.frmMain.hdnCount.value;i++)
{
if(vol.checked == true)
{
eval("document.frmMain.chkDel"+i+".checked=true");
document.frmMain.txtSelectItem.value++;
}
else
{
eval("document.frmMain.chkDel"+i+".checked=false");
}
}
}
function onDelete()
{
if(confirm('Do you want to delete ?')==true)
{
return true;
}
else
{
return false;
}
}
function OnCount(chk)
{
if(chk.checked)
{
document.frmMain.txtSelectItem.value++;
}
else
{
document.frmMain.txtSelectItem.value--;
}
}
</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"><input name="CheckAll" type="checkbox" id="CheckAll" value="Y" onClick="ClickCheckAll(this);"> </div></th>
</tr>
<?
$row = 0;
while($objResult = mysql_fetch_array($objQuery))
{
$row++;
?>
<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[]" id="chkDel<?=$row;?>" value="<?=$objResult["CustomerID"];?>" OnClick="OnCount(this);"></td>
</tr>
<?
}
?>
</table>
<?
mysql_close($objConnect);
?>
Selected : <input type="text" name="txtSelectItem" value="0"> <br>
All Item : <input type="text" name="txtAllItem" value="<?=$row;?>">
<input type="hidden" name="hdnCount" value="<?=$row;?>">
<input type="submit" name="btnDelete" value="Delete">
</form>
</body>
</html>
|
|
|
|
|
Date :
2013-01-10 12:01:48 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับพี่วิน ขอบคุณมากมาก
|
|
|
|
|
Date :
2013-01-10 14:06:06 |
By :
osapp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จัดไปครับ
|
|
|
|
|
Date :
2013-01-10 16:39:05 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ครับพี่วิน
|
|
|
|
|
Date :
2013-01-12 09:09:53 |
By :
osapp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|