PHP While Looper

While Looper

<?
$i = "1";
$pr = "5";

while($pr+1 != $i) {
  echo "$i<BR>";
  $i++;
}
?>