Skip to content

Instantly share code, notes, and snippets.

View rashedcs's full-sized avatar

Rashedul Islam rashedcs

  • Bangladesh
View GitHub Profile
@rashedcs
rashedcs / pagination.php
Created November 5, 2017 14:46 — forked from vineeth030/pagination.php
Pagination with PHP & MYSQL
<?php
$num_rec_per_page=10;
mysql_connect('localhost','root','');
mysql_select_db('apex1');
if (isset($_GET["page"])) { $page = $_GET["page"]; } else { $page=1; };
$start_from = ($page-1) * $num_rec_per_page;
$sql = "SELECT * FROM student LIMIT $start_from, $num_rec_per_page";
$rs_result = mysql_query ($sql); //run the query
?>
<table>