Can sombody give me a pointer in the right direction.
I am using a loop
while ($row = mysql_fetch_array($result))
{
extract($row);
echo "<table >
<td>$createDate</td>\n
<td>$loginName</td>\n
</td>\n
</tr>\n</table>";
}
What I want to do is loop this 10 times echoing the first 10, and then pause. Then on the click (or something) the next 10 come up on the screen.
My thinking is that I need to use the continue function to restrict the loop, but how do I just pause it, instruct it to restart but on a clean screen..