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 have some html that i submit using html
>example
><textarea name="test">
>     <font face="Arial">Perro</font>
></textarea>
>
>When i submit this and retrieve it on the target page the value looks like
>this:
><font face=\"Arial\">Perro</font>
>
>Can I somehow avoid that somehow?
>
>
>
>--
>PHP General Mailing List (http://www.php.net/)
>To unsubscribe, visit: http://www.php.net/unsub.php


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to