Php while loop question?

Findd Online

New member
This is my while loop. Nothing is wrong with it. I want it to complete this loop ten times then stop but how?

while(mysql_fetch_assoc
($Get_Recent_Clicks))
{
echo "</br><b>Title:</b>" . $row['title'] . " <b>Username:</b> " . $row['username'];
}
 
Back
Top