<form name="form1" method="post" action=""> <table width="84%" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#13171C" id="AutoNumber1" style="border-collapse: collapse"> <tr> <td width="10%" align="center" bgcolor="#333333" class="style21">ลำดับ</td> <td width="22%" align="center" bgcolor="#333333"><p align="center" class="style21">ชื่อผู้ใช้</p></td> <td width="29%" align="center" bgcolor="#333333" class="style21">ชื่อ - นามสกุล </td> <td width="14%" align="center" bgcolor="#333333" class="style21">สถานะ</td> <td width="15%" align="center" bgcolor="#333333"><span class="style21">แก้ไขข้อมูล</span></td> <td width="10%" align="center" bgcolor="#333333"><span class="style21">ลบ</span></td> </tr> <?php include "connect.inc.php"; // คำสั่ง SQL ที่ใช้ในการเลือกข้อมูลที่อยู่ในฐานข้อมูลกลับมา (เรียงตามลำดับ ID) $result = mysql_query("select * from member order by UserID "); $Num_Rows = mysql_num_rows($result); $Per_Page = 5; // Per Page if(isset($_GET["Page"])){ $Page = $_GET["Page"]; } if(!isset($_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; } $query_q =" order by name ASC LIMIT $Page_Start , $Per_Page"; $objQuery = mysql_query($query_q); for($abc = 0; $abc < $Num_Pages;$abc++){ if($Page == 1){ $i = 1; }else{ $i = $Page*10+1-10; } } $i0 = 0; if( $Num_Rows != 0){ while($dbarr = mysql_fetch_array($result)){ ++$i0; ?> <tr> <td width="10%" height="51" align="center"><?=$i; ?></td> <td width="22%" align="center"><?php echo $dbarr['Username'] ; ?></td> <td width="29%" align="center"><?php echo $dbarr['Name'] ; ?></td> <td width="14%" align="center"><?php echo $dbarr['Status'] ; ?></td> <td align="center"><center> <a href="EditUser.php?iD=<?php echo $dbarr['UserID'] ; ?>"><img src="images/icon1.gif" width="53" height="56" style="border: none;opacity:0.4;filter:alpha(opacity=40)" onmouseover="this.style.opacity=1;this.filters.alpha.opacity=100" onmouseout="this.style.opacity=0.4;this.filters.alpha.opacity=40"/></a> </center></td> <td align="center"><a href="Deleteuser.php?iD=<?php echo $dbarr['UserID'] ; ?>"><img src="images/Delete-icon.png" width="48" height="50" style="border: none;opacity:0.4;filter:alpha(opacity=40)" onmouseover="this.style.opacity=1;this.filters.alpha.opacity=100" onmouseout="this.style.opacity=0.4;this.filters.alpha.opacity=40"/></a></td> </tr> <?php $i++; }} ?> </table> </form> <p> จำนวน <?= $Num_Rows;?> รายการ <?=$Num_Pages;?> หน้า</p> <?php if($Prev_Page) { echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page'>ย้อนกลับ</a> "; } for($i=1; $i<=$Num_Pages; $i++){ if($i != $Page) { echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i'>$i</a> ]"; } else { echo "<b> $i </b>"; } } if($Page!=$Num_Pages) { echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page'>ถัดไป</a> "; } ?>
Quote:$result = mysql_query("select * from member order by UserID "); $Num_Rows = mysql_num_rows($result);
$sql= "select * from member"; $query = mysql_query($sql); $Num_Rows = mysql_num_rows($query);
Quote:$query_q =" order by name ASC LIMIT $Page_Start , $Per_Page"; $objQuery = mysql_query($query_q);
$sql .=" order by name ASC LIMIT $Page_Start , $Per_Page"; $objQuery = mysql_query($sql);
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง