Topic: Php question
ok i have this code i was trying to work on
<?php
$i=0;
$p="%";
while($i<=100)
{
echo $i . "" . $p;
$i++;
}
?>
is there a way i can get it to clear the # like right before $i++ so it looks like its counting up so as soon as 1 changes is 2?