Re: [PHP] help: form fields have CR/LF on submit

2001-09-21 Thread Patrick Sibenaler
Before others wate their time on this: The bug has officially been filed for RedHat 7.0 and php 4.0.4pl1: http://bugs.php.net/index.php?id=8966 thanks tamas. Tamas Arpad wrote: > > On Friday 21 September 2001 17:17, Patrick Sibenaler wrote: > > I submit a form with multipart/form-data,

Re: [PHP] help: form fields have CR/LF on submit

2001-09-21 Thread Patrick Sibenaler
PHP 4.0.4pl1 is used here on an Apache 1.3.14 on a RedHat Linux 7.0 Kernel 2.2.17 Tamas Arpad wrote: > > On Friday 21 September 2001 17:17, Patrick Sibenaler wrote: > > I submit a form with multipart/form-data, where a field 'name' > > contains let's say 'john'. On submit, I do get the expe

Re: [PHP] help: form fields have CR/LF on submit

2001-09-21 Thread Patrick Sibenaler
PHP 4.0.4pl1 is used here on an Apache 1.3.14 on a RedHat Linux 7.0 Kernel 2.2.17 Tamas Arpad wrote: > > On Friday 21 September 2001 17:17, Patrick Sibenaler wrote: > > I submit a form with multipart/form-data, where a field 'name' > > contains let's say 'john'. On submit, I do get the ex

Re: [PHP] help: form fields have CR/LF on submit

2001-09-21 Thread Patrick Sibenaler
PHP 4.0.4pl1 is used here on an Apache 1.3.14 on a RedHat Linux 7.0 Kernel 2.2.17 Tamas Arpad wrote: > > On Friday 21 September 2001 17:17, Patrick Sibenaler wrote: > > I submit a form with multipart/form-data, where a field 'name' > > contains let's say 'john'. On submit, I do get the exp

Re: [PHP] help: form fields have CR/LF on submit

2001-09-21 Thread Tamas Arpad
On Friday 21 September 2001 17:17, Patrick Sibenaler wrote: > I submit a form with multipart/form-data, where a field 'name' > contains let's say 'john'. On submit, I do get the expected global > $name -variable but the content has a CR/LF or /n character in > front of the actual content, like: Hi

[PHP] help: form fields have CR/LF on submit

2001-09-21 Thread Patrick Sibenaler
I submit a form with multipart/form-data, where a field 'name' contains let's say 'john'. On submit, I do get the expected global $name -variable but the content has a CR/LF or /n character in front of the actual content, like: ' john' instead of 'john'. Can anyone advise on this??