Re: [PHP-DB] breaking apart data

2004-01-21 Thread Chris Boget
Thanks Chris... that worked great. No worries. Guess I need to spend a _lot_ more time reading the manual. It also helps alot just lurking on the list (this and/or PHP general). I've been coding with PHP for almost 6 years and there're still new things I learn all the time. Chris -- PHP

Re: [PHP-DB] breaking apart data

2004-01-20 Thread CPT John W. Holmes
From: Larry R. Sieting [EMAIL PROTECTED] what would be the most efficient way to rework this data in to what I am after stored text: asdf asdf sadl jf lsakdjf a \r\n asdfierw aweiufasd asiuwr \r\n asdhfauiweuhrahsd \r\n displays text as: asdf asdf sadl jf lsakdjf a asdfierw

Re: [PHP-DB] breaking apart data

2004-01-20 Thread Larry R. Sieting
duh (me) okay... I am wanting to wrap the lines of text in bullets and perform some text formatting on it (highlight, bold, underling, etc..) using css classes At 11:12 AM 1/20/2004, you wrote: From: Larry R. Sieting [EMAIL PROTECTED] what would be the most efficient way to rework this

Re: [PHP-DB] breaking apart data

2004-01-20 Thread Ricardo Lopes
You probably have more luck in a regular expression mailing list. Just an opinion. - Original Message - From: Larry R. Sieting [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, January 20, 2004 4:17 PM Subject: Re: [PHP-DB] breaking apart data duh (me) okay... I am wanting

Re: [PHP-DB] breaking apart data

2004-01-20 Thread Chris Boget
duh (me) okay... I am wanting to wrap the lines of text in bullets and perform some text formatting on it (highlight, bold, underling, etc..) using css classes script language=php function bulletElements( $arrElement, $key ) { echo 'li' . $arrElement . '/li'; } $str = asdf

Re: [PHP-DB] breaking apart data

2004-01-20 Thread Larry R. Sieting
Thanks Chris... that worked great. Guess I need to spend a _lot_ more time reading the manual. At 11:28 AM 1/20/2004, Chris Boget wrote: duh (me) okay... I am wanting to wrap the lines of text in bullets and perform some text formatting on it (highlight, bold, underling, etc..) using css