<?php if(!empty($act) && $act='del'){ $result_data =get_a_line("select * from information where id_information='".$id."' "); if($result_data['image']){ unlink($path_information.$result_data['image']); } deleteall("information where id_information='".$id."'"); PHPalert('ลบข้อมูลเรียบร้อย');PHPgourl('index.php?m='.$module.'&f='.$file.''); } if($task=='delete'){ $countChk=count($_POST['chkDel']); for($i=0;$i<$countChk;$i++){ $idChk=$_POST['chkDel'][$i]; $result_data =get_a_line("select * from information where id_information='".$idChk."' "); if($result_data['image']){ unlink($path_information.$result_data['image']); } deleteall("information where id_information='".$idChk."'"); PHPalert('ลบข้อมูลเรียบร้อย');PHPgourl('index.php?m='.$module.'&f='.$file.''); } } ?> <script language="JavaScript" type="text/JavaScript"> function submitbutton(pressbutton){ var obj=document.adminform; if ( pressbutton == 'delete') { if( document.adminform.boxchecked.value =='' ){ alert('กรุณาเลือกข้อมูลที่ต้องการลบด้วยค่ะ');return ; } else if (confirm('คุณต้องการ '+pressbutton+' ใช่หรือไม่?')) { }else return ; } submitform(pressbutton) } </script> <!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" /> <link rel="stylesheet" href="../../css/all.css" type="text/css" media="all" /> <link rel="stylesheet" href="../../css/style.css" type="text/css" media="all" /> <title></title> </head> <body> <div id="content"><!-- Content --> <div class="box"><!-- Box --> <div class="box-head"><!-- Box Head --> <h4><div class="left">ข้อมูลข่าวสารและโปรโมชั่น</div></h4> <div class="right"> <form action="index.php?m=<?=$module?>&f=<?=$file?>" method="post"> <label><input type="text" name="keyword" value="<?=$_POST['keyword']?>" /></label> <label><input type="submit" name="Submit" value=" Search " /></label> </form> </div> <div class="right"><a href="index.php?m=information&f=add"><img src="images/add.png"> </a> <a href="#a" class="button" name="btnDelete" title='ลบข้อมูล' onclick="javascript:submitbutton('delete')" ><img src="images/delete.png"></a> </div> </div><!-- End Box Head --> <!-- Table --> <div class="table"> <?php $pagelen=10; $range=100; // แสดงรายการค้นหาภายใน keyword ที่เราเรียกหาโดยไม่จำกัดตัวอักษร (LIKE %..%) เมื่อกดปุ่ม if($_POST['keyword']){ $where = " where name LIKE '%".$_POST['keyword']."%' "; } //โค๊ดแบ่งหน้า $level=$_GET['level']?$_GET['level']:'desc'; if($level=='asc'){ $sortNew='desc';}else{$sortNew='asc'; } $sql_data="select * from information $where order by sort $level "; $result_data=get_rsltset($sql_data); $nr_data=count($result_data); $num_rowsall=count($result_data); $totalpage=ceil($nr_data/$pagelen); $goto=($page-1) * $pagelen; $start=$page-$range; $end=$page+$range; if($start<=1){$start=1;}if($end>=$totalpage){ $end=$totalpage;} $sql_data="$sql_data LIMIT ".$goto.",".$pagelen.""; $result_data=get_rsltset($sql_data); $nr_data=count($result_data); ?> <form id="adminform" name="adminform" action="index.php?m=<?=$module?>&f=<?=$file?>&level=<?=$sortNew?>" method="post" > <input type="hidden" name="task" /><input type="hidden" name="boxchecked" /> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <th width="33" class="ac"> <input name="CheckAll" type="checkbox" id="CheckAll" value="Y" onClick="ClickCheckAll(this);" title='เลือกข้อมูลทั้งหมด' /> </th> <th width="72" class="ac">รูปภาพ</th> <th width="151">ชื่อเรื่อง</th> <th width="167">รายละเอียด</th> <th width="82" class="ac">สถานะ</th> <th width="65" class="ac">ลำดับ</th> <th width="63" class="ac">จัดการ</th> </tr> <? for($n=0; $n<$nr_data; $n++){ ?> <tr> <td width="33" class="ac"> <input type="checkbox" name="chkDel[]" id="chkDel<?=$n ?>" value="<?=$result_data[$n]["id_information"];?>" onclick="isChecked();" title='เลือกข้อมูล'> </td> <td class="ac"><img src="img.php?img=<? echo $path_information.$result_data[$n]['image'];?>&size=35" /></td> <td width="151"><strong> <?=$result_data[$n]['name']?> </strong></td> <td width="82"><?=html2txt(trim(mb_substr(strip_tags($result_data[$n]['detail']),0,30,'UTF-8'))).'..';?> </td><!-- ตัดคำให้ลงบรรทัดใหม่ตามที่ต้องการ ในที่นี้ตัดคำเมื่อครบ 30 ตัวอักษร--> <td width="65" class="ac"><?=$result_data[$n]['display']?><img src="images/block.png"></td> <td width="63" class="ac"> <input name="sort" type="text" class="sortPage" data-id="<?=$result_data[$n]["id_information"];?>" value="<?=$result_data[$n]['sort']?>" size="1.5" /> </td> <td width="115" class="ac"> <a href="#" title='ดูข้อมูล'><img src="images/view.gif"></a> | <a href="index.php?m=information&f=edit&id=<?=$result_data[$n]['id_information']?>" title='แก้ไข'><img src="images/edit.gif"></a> | <a href="index.php?m=<?=$module?>&id=<?=$result_data[$n]['id_information']?>&act=del" title='ลข'><img src="images/del.gif"></a></td> </tr> <? } ?> </table> <input type="hidden" name="hdnCount" value="<?=$n;?>"> <div class="cleaner_h5"></div> <div class="right"><input name="sortNew" type="button" id="sortNew" value=" เรียงลำดับใหม่ " onclick="javascript:submitbutton('sortNew')" /></div> <div class="cleaner_h5"></div> </form> <div class="select"> <strong> Pages: </strong> <select name="select" onchange="if(this.value!='null'){changeCAT(this.value)}"> <? for($lp=1;$lp<=$totalpage;$lp++){ if($page==$lp){ ?> <option value="<?=$lp?>" selected="selected"> <?=$lp?> / <?=$totalpage?> </option> <? }else{ ?> <option value="<?=$lp?>"> <?=$lp?> / <?=$totalpage?> </option> <? } } ?> </select> </div> </div><!-- End Table --> </div><!-- End Box --> </div><!-- End Contain --> </body> </html> <script language="JavaScript"> function onDelete(){ if(confirm('คุณต้องการลบข้อมูลที่เลือกใ่ช่หรือไม่')==true){ return true; } else{ return false; } } </script> <script language="JavaScript"> function ClickCheckAll(vol) { var i=0; for(i=0;i<=document.adminform.hdnCount.value;i++) { if(vol.checked == true) { eval("document.adminform.chkDel"+i+".checked=true"); document.adminform.boxchecked.value++; } else { eval("document.adminform.chkDel"+i+".checked=false"); document.adminform.boxchecked.value--; } } } </script>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง