[PHP] Annoying syntax problem with RTRIM

2002-07-04 Thread René Fournier
echo rtrim($feat,, ); On my local Apache-OSX web server (PHP 4.1.2), this command works fine. (The reason I use it is that sometimes $feat contains a comma and a space at the end of the string, which I want to remove (if it's there) before echoing.) When this same script is run on my ISP (PHP

Re: [PHP] Annoying syntax problem with RTRIM

2002-07-04 Thread Jason Wong
On Friday 05 July 2002 00:41, René Fournier wrote: echo rtrim($feat,, ); On my local Apache-OSX web server (PHP 4.1.2), this command works fine. (The reason I use it is that sometimes $feat contains a comma and a space at the end of the string, which I want to remove (if it's there) before

Re: [PHP] Annoying syntax problem with RTRIM

2002-07-04 Thread René Fournier
I did. It didn't help. (That's why I posted this message.) On Thursday, July 4, 2002, at 10:47 AM, Jason Wong wrote: On Friday 05 July 2002 00:41, René Fournier wrote: echo rtrim($feat,, ); On my local Apache-OSX web server (PHP 4.1.2), this command works fine. (The reason I use it is

Re: [PHP] Annoying syntax problem with RTRIM

2002-07-04 Thread Analysis Solutions
On Thu, Jul 04, 2002 at 11:00:55AM -0600, René Fournier wrote: I did. It didn't help. (That's why I posted this message.) Suggestions to RTFM generally mean that there's something plainly visible in the manual that states what your problem is. Did you go back to the manual after Jason's

Re: [PHP] Annoying syntax problem with RTRIM

2002-07-04 Thread René Fournier
^hint get them to upgrade php for you. Paul Roberts [EMAIL PROTECTED] - Original Message - From: René Fournier [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 04, 2002 6:00 PM Subject: Re: [PHP] Annoying syntax problem with RTRIM I did