Sorry for the unclear text !
Its like you wrote. In a loop I read out name, adress... from a database and give them out on a page. What I want to do is, after the loop gave out e.g. 10 results, stop it automaticely (not by the user !) show a text :
-continue-
When now the user presses this link, the loop should continue.
It-s not a problem to construct an index counting how many results were shown. In my case, after the 10th result the link -ontinue- will be printed. But I don-t know, how to stop the loop and what I have to write at href to continue it.
while ($myrow=mysql_fetch_row($result)){
echo $name;
echo $adress;
:
:
$x=$x+1;
If ($x=="10"){
echo "<A HREF=????? onclick=?????>-Continue-</A>";
}
};