fetching the queries using PDO, how to output all results such that output gets distributed in N number of pages & after X number of results on each page....only require with the help of next button not pagination (numbering). i want to break the below array echo $r['rollno']; in pages ?
$conn=new PDO("mysql:host=$host;dbname=$db",$user,$pass);
$sql="SELECT rollno FROM student";
$q=$conn->query($sql) or die("failed!");
while($r = $q->fetch(PDO::FETCH_ASSOC)){
echo $r['rollno'];
mysql_*functions will be deprecated in PHP 5.5. It is not recommended for writing new code as it will be removed in the future. Instead, either the MySQLi or PDO and be a better PHP Developer. – Jason McCreary Jan 6 at 16:41