<!doctype html> <html> <head> <meta charset="utf-8"> <title>Untitled Document</title> <script src="jquery-2.1.1.min.js"></script> <script> $(document).ready(function(e) { $('select').change(function(e) { if( $(this).val()>''){ $('.data:not([data-id='+$(this).val()+'])').hide(500); $(".data[data-id='"+$(this).val()+"']").show(500); }else{ $('.data').show(500); } }); }); </script> </head> <body> <select > <option value="">Select All</option> <option value="0">ประกาศ</option> <option value="1">blabla</option> </select> <table> <tr class="data 0" data-id="0"><td>aslkdfkasd fkasd 0</td></tr> <tr class="data 1" data-id="1"><td>aslkdfkasd fkasd 1</td></tr> <tr class="data 1" data-id="1"><td>aslkdfkasd fkasd 1</td></tr> </table> </body> </html>
<label>ประเภท :</label> <?php $chk = array(); $chk[1] = 'checked="checked"'; $chk[0] = ''; if(isset($data['rank_special'])) { if($data['rank_special']== 0){ $chk[1] = ''; $chk[0] = 'checked="checked"'; } } ?> <input type="radio" name="rank_special" id="rank_special1" value="1" <?php echo $chk[1]; ?> /> <label for="rank_special1">ประกาศ</label> <input type="radio" name="rank_special" id="rank_special2" value="0" <?php echo $chk[0]; ?> /> <label for="rank_special2">คำสั่งแต่งตั้ง</label>
<?php require_once 'connect.php'; if(isset($_GET['id'])) { mysql_query("DELETE FROM phpbb_ranks WHERE rank_id =" .$_GET['id']); } $sql = "SELECT * FROM phpbb_ranks"; $result = mysql_query($sql); ?> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>List</title> </head> <body> <div align="center"> <p><label>เลือกประเภทเอกสาร</label> <select name="type"> <option>ทั้งหมด</option> <option>คำสั่งแต่งตั้ง</option> <option>ประกาศ</option> </select> </p> <p> <label>คำค้น</label> <input type="text"><button value="ค้นหา">ค้นหา</button> </p> <table border="1" height="auto" > <tr> <th>ลำดับ</th> <th>ประเภท</th> <th>ชื่อเอกสาร</th> <th>ไฟล์</th> <th>เครื่องมือ</th> </tr> <?php while ($fetch = mysql_fetch_assoc($result)) { ?> <tr> <td align="center"><?php echo $fetch['rank_id'] ; ?></td> <td><?php echo $fetch['rank_special'] ; ?></td> <td><a target="_blank" href="pdf/<?php echo $fetch['rank_image'] ; ?>"><?php echo $fetch['rank_title'] ; ?></a></td> <td align="center"><a target="_blank" href="pdf/<?php echo $fetch['rank_image'] ; ?>"><img src="image/pdf.png"></a></td> <td> <a href="form.php?id=<?php echo $fetch['rank_id']; ?>">Edit</a> <a href="list.php?id=<?php echo $fetch['rank_id']; ?>">Delete</a> </td> </tr> <?php } ?> </table> </div> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง