RE: [PHP] Re: string formatting help

2001-07-06 Thread Chad Day
9 PM To: Chad Day; [EMAIL PROTECTED] Subject: [PHP] Re: string formatting help In the original message below, did you mean that you're actually SEEING the tags in the output? If so, there may be a conversion with htmlentities() going on somewhere that converts the tags to <br> (so they are di

[PHP] Re: string formatting help

2001-07-06 Thread Steve Edberg
In the original message below, did you mean that you're actually SEEING the tags in the output? If so, there may be a conversion with htmlentities() going on somewhere that converts the tags to
(so they are displayed instead of being interpreted). If you replaced the 's with spaces or newl

[PHP] Re: string formatting help

2001-07-06 Thread Inércia Sensorial
Maybe: $array = explode("", $string); foreach ($array as $key => $value) { echo "$value"; } Would separate the string by 's and print all in one line. -- Julio Nobrega. A hora está chegando: http://sourceforge.net/projects/toca "Chad Day" <[EMAIL PROTECTED]> wrote in message [EM