I'm tring to print the variable "tmp", but the echo is just printing "abcd", the rest he can't print. Why? regards, Augusto $tmp="abcd<efg"; echo $tmp."<br>"; echo "<br>"; $tmp=addslashes($tmp); echo $tmp."<br>"; echo "<br>"; $tmp=stripslashes($tmp); echo $tmp."<br>"; -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
- Re: [PHP] Escaping from "<" Augusto Cesar Castoldi
- Re: [PHP] Escaping from "<" Christopher Heschong