Re: [PHP] Re: Evaluating form posts

2004-09-13 Thread PHP Mailing list account
Thanks to you all, I decided to turn that stuff off since the stripslashes function returned not exactly the same I get when it's turned off. On Sun, Sep 12, 2004 at 11:44:40PM -0700, Chris Shiflett wrote: > --- Alexander Kleshchevnikov <[EMAIL PROTECTED]> wrote: > > You should chech for configu

Re: [PHP] Re: Evaluating form posts

2004-09-13 Thread Chris Shiflett
--- zareef ahmed <[EMAIL PROTECTED]> wrote: > A good article about magic quotes > > http://www.webmasterstop.com/tutorials/magic-quotes.shtml That's a nice article, and boy is Harry funny: Magic Quotes are Evil! While you sleep, they whisper in your dreams - \'Use magic quotes.

Re: [PHP] Re: Evaluating form posts

2004-09-12 Thread Chris Shiflett
--- Alexander Kleshchevnikov <[EMAIL PROTECTED]> wrote: > You should chech for configuration of magic quotes gpc. > Use get_magic_quotes_gpc() function: > > $foo = get_magic_quotes_gpc() ? stripslashes($_POST["foo"]) : > $_POST["foo"]); I agree. However, stripslashes() doesn't necessarily undo ad

Re: [PHP] Re: Evaluating form posts

2004-09-12 Thread zareef ahmed
HI, A good article about magic quotes http://www.webmasterstop.com/tutorials/magic-quotes.shtml zareef ahmed --- Alexander Kleshchevnikov <[EMAIL PROTECTED]> wrote: > You should chech for configuration of magic quotes > gpc. > Use get_magic_quotes_gpc() function: > > $foo = get_magic_quotes_