[PHP] Recursive Replace

2002-10-02 Thread Rick Beckman
? 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

RE: [PHP] Recursive Replace

2002-10-02 Thread Jon Haworth
Hi Rick, 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. I think you're looking for http://www.php.net/nl2br. Specifically: for ($i = 7; $i sizeof($info); $i+=1) echo nl2br($info[$i]); Cheers Jon

RE: [PHP] Recursive Replace

2002-10-02 Thread Ford, Mike [LSS]
-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

Re: [PHP] Recursive Replace

2002-10-02 Thread Rick Beckman
Thanks everyone! Works great! :-) If only I would have noticed how obvious it was before trying making it more difficult than I had to. -- Kyrie Eleison, Rick www.spiritsword.com/phpBB2/ Mike Ford wrote: -Original Message- From: Rick Beckman [mailto:[EMAIL PROTECTED]] Sent: 02

RE: [PHP] Recursive Replace

2002-10-02 Thread John W. Holmes
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