Hi,
Can anyone tell me why this is a never ending loop?

$i=0;
$count = 1;
while ($count > $i);
{
    echo "$i <br>";
    $i++;
}
Chris

Reply via email to