> -----Original Message-----
> From: Rick Beckman [mailto:[EMAIL PROTECTED]]
> Sent: 02 October 2002 12:12
>
> <? for ($i = 7; $i < sizeof($info); $i+=1) { echo $info[$i]; } ?>
>
> That line of code successfully will display lines 7 and on of
> an included
> text file into my HTML boilerplate. However, in my hundreds
> of source text
> files, "<br>" is not included at the end of the lines,
> therefore lines 7 and
> on appear as one chunk of text, rather than neatly formatted
> lines. How can
> I combine that line of code with str_replace() or some other replace
> function in order to turn "\n" into "<br>" for each line.
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>'; } ?>
Cheers!
Mike
---------------------------------------------------------------------
Mike Ford, Electronic Information Services Adviser,
Learning Support Services, Learning & Information Services,
JG125, James Graham Building, Leeds Metropolitan University,
Beckett Park, LEEDS, LS6 3QS, United Kingdom
Email: [EMAIL PROTECTED]
Tel: +44 113 283 2600 extn 4730 Fax: +44 113 283 3211
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php