Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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'];
share|improve this question
The 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
okk...i will....how to achieve this using old or new code ? – user1949991 Jan 6 at 17:00

closed as not a real question by juergen d, Gordon Linoff, bensiu, Marcus Ekwall, Soner Gönül Jan 6 at 21:54

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 0 down vote accepted

Use mysql LIMIT in your query:

$x = 10; // results on each page
$n = isset($_GET['page']) ? (int)$_GET['page'] : 0; // pagenumber

$sql = "SELECT rollno FROM student LIMIT ".($x * $n).", $x";

and link to next page like this:

echo('<a href="?page='.($n+1).'">Next</a>');
share|improve this answer
ok...but how to print them in different pages one after other ? – user1949991 Jan 6 at 17:20
edited my answer with a example on how you can make a next link – Emil Aspman Jan 6 at 17:28
how to pass array echo $r['rollno']; ? – user1949991 Jan 6 at 18:26
maybe it will be easier if you use mysql LIMIT. see new edit – Emil Aspman Jan 6 at 18:46
thank you ....!! – user1949991 Jan 6 at 19:06

Not the answer you're looking for? Browse other questions tagged or ask your own question.