<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head> <body> <script language="JavaScript"> function ClickCheckAll(vol) { var i=1; for(i=1;i<=document.frmMain.hdnCount.value;i++) { if(vol.checked == true) { eval("document.frmMain.chkDel"+i+".checked=true"); } else { eval("document.frmMain.chkDel"+i+".checked=false"); } } } function onDelete() { if(confirm('Do you want to delete ?')==true) { return true; } else { return false; } } </script> <form name="frmMain" action="delall.php" method="post" OnSubmit="return onDelete();"> <?php include("../connect.php"); $strSQL = "SELECT * FROM student"; $objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]"); ?> <table width="726" border="1"> <tr> <th width="91"> <div align="center">CustomerID </div></th> <th width="98"> <div align="center">card </div></th> <th width="198"> <div align="center">name </div></th> <th width="97"> <div align="center">username </div></th> <th width="59"> <div align="center">password </div></th> <th width="71"> <div align="center">pic </div></th> <th width="30">room</th> <th width="30"> <div align="center"> <input name="CheckAll" type="checkbox" id="CheckAll" value="Y" onClick="ClickCheckAll(this);"> </div></th> </tr> <?php $i = 0; while($objResult = mysql_fetch_array($objQuery)) { $i++; ?> <tr> <td><div align="center"><?php echo $objResult["id"];?></div></td> <td><?php echo $objResult["card"];?></td> <td><?php echo $objResult["name"];?></td> <td><div align="center"><?php echo $objResult["username"];?></div></td> <td align="right"><?php echo $objResult["password"];?></td> <td align="right"><?php echo $objResult["pic"];?></td> <td align="center"><?php echo $objResult["room"];?></td> <td align="center"><input type="checkbox" name="chkDel[]" id="chkDel<?php echo $i;?>" value="<?php echo $objResult["id"];?>"></td> </tr> <?php } ?> </table> <?php mysql_close($objConnect); ?> <input type="submit" name="btnDelete" value="Delete"> <input type="hidden" name="hdnCount" value="<?php echo $i;?>"> </form> </body> </html>
<html> <head> </head> <body> <?php include("../connect.php"); for($i=0;$i<count($_POST["chkDel"]);$i++) { if($_POST["chkDel"][$i] != "") { $strSQL = "DELETE FROM student "; $strSQL .="WHERE id = '".$_POST["chkDel"][$i]."' "; $objQuery = mysql_query($strSQL); } } echo "<meta http-equiv='Content-Type' content='text/html; charset=UTF-8' />"; echo "<script language='javascript'>alert('ลบข้อมูล');</script>"; echo "<meta http-equiv='refresh' content='0;URL=../login/del.php'>"; mysql_close($objConnect); ?> </body> </html>
$strSQL = "UPDATE student SET ";
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง