<script> function chkall() { var inputs = document.getElementsByTagName('input'); if(document.getElementById('chkall').checked==true) { for(var i=0;i<inputs.length;i++) { if(inputs[i].type=="checkbox") { inputs[i].checked=true; } } } else { for(var i=0;i<inputs.length;i++) { if(inputs[i].type=="checkbox") { inputs[i].checked=false; } } } } </script> All <input type="checkbox" name="chk1" id="chkall" onclick="if(this.checked==true){chkall();}else{chkall();}"><br> <input type="checkbox" name="chk1" id="chk1"><br> <input type="checkbox" name="chk1" id="chk2"><br> <input type="checkbox" name="chk1" id="chk3"><br>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head> <body> <? include "../../include/connectionDb.php"; ?> <script> function chkall() { var inputs = document.getElementsByTagName('input'); if(document.getElementById('chkall').checked==true) { for(var i=0;i<inputs.length;i++) { if(inputs[i].type=="checkbox") { inputs[i].checked=true; } } } else { for(var i=0;i<inputs.length;i++) { if(inputs[i].type=="checkbox") { inputs[i].checked=false; } } } } </script> <? $sql_main = "SELECT * FROM process"; $result_main = mysql_query($sql_main); ?> <table> <? while($main = mysql_fetch_array($result_main)){ ?> <tr> <td align="left"><input type="checkbox" name="chk[]" id="chkall" onclick="if(this.checked==true){chkall();}else{chkall();}"> <? echo $main['processName']; $mainid = $main['processPK']; ?> </td> </tr> <? $sql_sub = "SELECT * FROM subprocess WHERE (processFK = '$mainid')"; $result_sub = mysql_query($sql_sub); $i=1; while($sub = mysql_fetch_array($result_sub)){ ?> <tr> <td align="left">|-<input type="checkbox" name="chk[]" id="chk<?=$i;?>"><?=$sub['subname'];?> </td> </tr> <? } } include "../../include/closeDb.php"; ?> </table> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง