Re: [PHP] character problem

2001-02-12 Thread Ankur Verma
use stripslashes on the data being posted. for ex if the text field name is varText use $varText=stripslashes($varText) That should take care of it regards Ankur Verma HCL Technologies A1CD, Sec -16 Noida, UP India - Original Message - From: "John P. Donaldson" <[EMAIL PROTECTED]> T

RE: [PHP] character problem

2001-02-12 Thread Philip Olson
On Mon, 12 Feb 2001, Dave VanAuken wrote: > PHP is doing what it should to your form input. It automatically > performs "addslashes" to all form input so that the variables are > parsed correctly on the receiveing end. > > do a "stripslashes" to get rid of it. Yes and it's doing this via the m

RE: [PHP] character problem

2001-02-12 Thread Dave VanAuken
PHP is doing what it should to your form input. It automatically performs "addslashes" to all form input so that the variables are parsed correctly on the receiveing end. do a "stripslashes" to get rid of it. read the manual on these two and it will all be explained. Dave -Original Messag