While Loops

While Loops
<?php
$friendcount
=0;

while (
$friendcount 10)
{
   echo 
"Oh, I am so lonely.  ";
   echo 
"I have ".$friendcount." friends.<br><br>";
   
$friendcount=$friendcount+1;
}
 
?>