<? $objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database"); $objDB = mysql_select_db("mymember"); $strSQL = "select * from tb_mymember order by id"; $Per_Page = 125; if ( !$Page ) $Page = 1; $Prev_Page = $Page - 1; $Next_Page = $Page + 1; $result = mysql_query( $strSQL ); $Page_start = ( $Per_Page * $Page ) - $Per_Page; $Num_Rows = mysql_num_rows( $result ); 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; if ( ( $Page > $Num_Pages ) || ( $Page < 0 ) ) print "total $Page > $Num_Pages"; $strSQL .= " LIMIT $Page_start, $Per_Page"; $result = mysql_query( $strSQL ); while ( $rs = mysql_fetch_array( $result ) ) { echo "$rs[ID]\n"; } $objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]"); ?> <p class="Small"> TOTAL PAGE : <b><?php echo $Num_Rows; ?></b> Records <b><?php echo $Num_Pages; ?></b> pages: <?php /* button prev */ if ( $Prev_Page ) echo "<a href=\"$PHP_SELF?Page=$Prev_Page\"><< Prev Page </a>"; /* run number */ for ( $i=1; $i<=$Num_Pages; $i++ ) { if ( $i != $Page ) echo "[<a href=\"$PHP_SELF?Page=$i\">$i</a>]"; else echo " <b>$i</b> "; } /* button next */ if ( $Page != $Num_Pages ) echo "<a href=\"$PHP_SELF?Page=$Next_Page\"> Next Page >></a>"; ?>
$Page = $_GET['Page']; if ( !$Page ) $Page = 1;
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง