<HTML> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>แสดงข้อมูลสมาชิก</title> <style type="text/css"> <!-- body,td,th { color: #000000; } body { background-color: #CCCCCC; } --> </style><BODY><center> <p><img src="../Head/head.gif" width="1000" height="150"> </p> <p> <form name="frmSearch" method="get" action="Search_1.php"> <table width="599" border="0"> <tr> <th>ค้นหาจดหมาย <label></label> <input name="txtKeyword" type="text" id="txtKeyword" value="<?=$_GET["txtKeyword"];?>"> <input type="submit" value="Search" onClick="check()" > <input type="button" value="Reset" OnClick="document.frmSearch.txtKeyword.value='';"> <input type="submit" value="clear" onClick= "<? echo"<meta http-equiv='refresh' content='1;url=../Search_1.php'>";?>" > </th> </tr> </table> <script language="JavaScript"> function check() { if(document.frmSearch.txtKeyword.value=="") { alert("กรุณากรอกข้อมูลที่ต้องการค้นหาด้วยครับ") ; return false ; } else if (document.frmSearch.txtKeyword.value.length < 4) { alert('กรุณาใส่คำในการค้นหาให้เกิน3คำขึ้นไปด้วยครับ '); } } </script> </form> </p> </center> <center> <? include "connect.php"; $result=mysql_db_query($dbname,$sql); //if($_GET["txtKeyword"]length < 3) //{ //echo""; //} if($_GET["txtKeyword"] !="") { $strSQL = "SELECT * FROM email WHERE (name LIKE '%".$_GET["txtKeyword"]."%' or doctype LIKE '%".$_GET["txtKeyword"]."%'or status LIKE '%".$_GET["txtKeyword"]."%'or iddoc LIKE '%".$_GET["txtKeyword"]."%'or day LIKE '%".$_GET["txtKeyword"]."%')"; $objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]"); $row=mysql_num_rows($objQuery); $Num_Rows = mysql_num_rows($objQuery); $Per_Page = 80; // Per Page $Page = $_GET["Page"]; if(!$_GET["Page"]) { $Page=1; } $Prev_Page = $Page-1; $Next_Page = $Page+1; $Page_Start = (($Per_Page*$Page)-$Per_Page); if($Num_Rows<=$Per_Page) { $Num_Pages =1; } else if(($Num_Rows % $Per_Page)==0) { $Num_Pages =($Num_Rows/$Per_Page) ; } else { $Num_Pages =($Num_Rows/$Per_Page)+1; $Num_Pages = (int)$Num_Pages; } $strSQL .=" order by id ASC LIMIT $Page_Start , $Per_Page"; $objQuery = mysql_query($strSQL); echo"<br>"; echo " <table width='800' border='0'><tr><td align='left'><b><font size='2' face='MS Sans Serif'color='#0443AA'>จำนวนข้อมูลทั้งหมด $Num_Rows: จากทั้งหมด $Num_Pages หน้า</td></b></font> <td align='right'><b><font size='2' face='MS Sans Serif'color='#0443AA'> หน้า $Page</td></b></font></tr></table> <table width='800' border='1'> <tr bgcolor='color='#0443AA'> <table width='800' border='1'> <tr bgcolor='color='#0443AA'> <td width='50'><center><b><font size='2' face='MS Sans Serif'color='#FFFFFF'>ลำดับที่ </font></b></center></td> <td width='150'><center><b><font size='2' face='MS Sans Serif'color='#FFFFFF'>หมายเลขจดหมาย </font></b></center></td> <td width='250'><center><b><font size='2' face='MS Sans Serif'color='#FFFFFF'>ชื่อผู้รับ </font></b></center></td> <td width='150'><center><b><font size='2' face='MS Sans Serif'color='#FFFFFF'>ประเภทจดหมาย</font></b></center></td> <td width='200'><center><b><font size='2' face='MS Sans Serif'color='#FFFFFF'>วันที่ได้รับ </font></b></center></td> <td width='100'><center><b><font size='2' face='MS Sans Serif'color='#FFFFFF'>สถานะ </font></b></center></td> <td width='100'><center><b><font size='2' face='MS Sans Serif'color='#FFFFFF'>แก้ไข</font></b></center></td> <td width='100'><center><b><font size='2' face='MS Sans Serif'color='#FFFFFF'>ลบ</font></b></center></td></tr>"; while($record=mysql_fetch_array($objQuery)) { $id=$record[id]; $iddoc=$record[iddoc]; $name=$record[name]; $lastname=$record[lastname]; $doctype=$record[doctype]; $day=$record[day]; $mounth_app=$record[mont]; $y_app=$record[year]; $status=$record[status]; echo "<tr bgcolor='#FFFFFF'> <td width='50'><center><font size='2' face='MS Sans Serif'color='#0443AA'>$id</font></center></td> <td width='150'><center><font size='2' face='MS Sans Serif'color='#0443AA'>$iddoc</font></center></td> <td width='250'><center><font size='2' face='MS Sans Serif'color='#0443AA'>$name $lastname</font></center></td> <td width='150'><center><font size='2' face='MS Sans Serif'color='#0443AA'>$doctype</font><center></td> <td width='200'><center><font size='2' face='MS Sans Serif'color='#0443AA'>$day $mounth_app $y_app </font></center></td> <td width='100'><center><font size='2' face='MS Sans Serif'color='#0443AA'>$status</font></center></td> <TD width='100'><A HREF=\"letter_edit2.php?id_edit=$id\"onclick=\" return confirm('ยืนยันแก้ไข$name')\"><center>แก้ไข</A></TD></center> <TD width='100'><A HREF=\"admin_type_delete.php?id_del=$id\"onclick=\" return confirm('ยืนยันลบ$name ออกจากระบบ')\"><center>ลบ</A></TD></center> </tr>"; } echo "</table>"; if($row=="") { echo "<center><font color='#0443AA'>****ไม่พบข้อมูล****</font></center>"; } ?> <center> <b><font size='3' face='MS Sans Serif'color='#0443AA'>หน้า </font> </b>: <? if($Prev_Page) { echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page&txtKeyword=$_GET[txtKeyword]'><< Back</a>"; } for($i=1; $i<=$Num_Pages; $i++){ if($i != $Page) { echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i&txtKeyword=$_GET[txtKeyword]'>$i</a> ]"; } else { echo "<b><font color='#0443AA'> $i</font> </b>"; } } if($Page!=$Num_Pages) { echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page&txtKeyword=$_GET[txtKeyword]'>Next>></a> "; } } ?> </center> </center> <tr> <td><h2 align="center" class="style1"> </h2> <h3 align="center" class="style1"> </h3> </BODY> </HTML>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง