I have code like....
$sql="select *from students";
$result=mysql_query($sql,$conn);
echo "<table>";
echo "<th>Roll Number</th><th>Name</th>";
while($row=mysql_fetch_rows($result))
{
echo "<tr>";
echo "<td>$row[0]</td><td>$row[1]</td>";
echo"</tr>";
}
now the table student may contain any number of entries.....My requirement is to display 10 results at a time. The next results will be shown only when i click on next button..
How should i do it......
Is it possible to do it with little modifications to above code......
thanks a lot
bye and take care