Re: [PHP] Avoid escaping

2002-05-29 Thread Ed Gorski
Inside php.ini there is a setting to turn "Magic Quotes" on or off.turn them off and you won't have this problem. If you don't have access to the php.ini file or your administrator will not turn them off use echo stripslashes($test); ed At 11:36 AM 5/29/2002 +0200, Jose Jeria wrote: >i h

Re: [PHP] Avoid escaping

2002-05-29 Thread Steve Buehler
http://www.php.net/manual/fi/function.stripslashes.php Steve At 11:36 AM 5/29/2002 +0200, you wrote: >i have some html that i submit using html >example > > Perro > > >When i submit this and retrieve it on the target page the value looks like >this: >Perro > >Can I somehow avoid that somehow

[PHP] Avoid escaping

2002-05-29 Thread Jose Jeria
i have some html that i submit using html example Perro When i submit this and retrieve it on the target page the value looks like this: Perro Can I somehow avoid that somehow? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php