> If it's genuinely one line per $info[] element, just add the
dad-blamed
> <br> to your echo:
> 
>  <? for ($i = 7; $i < sizeof($info); $i+=1) { echo $info[$i], '<br>';
} ?>
> 

Also, just an FYI to the OP, you may want to calculate sizeof($info)
before hand, and use a variable in your for() statement. That way it
doesn't have to calculate sizeof() each loop...

---John Holmes...



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to