Re: [PHP] Escaping from "<"

2001-05-16 Thread Christopher Heschong
on 5/16/01 9:12 PM, Augusto Cesar Castoldi at [EMAIL PROTECTED] wrote: > 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 echo $tmp.""; > echo ""; > $tmp=addslashes($tmp); > echo $tmp.""; >

[PHP] Escaping from "<"

2001-05-16 Thread Augusto Cesar Castoldi
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"; echo ""; $tmp=addslashes($tmp); echo $tmp.""; echo ""; $tmp=stripslashes($tmp); echo $tmp.""; -- PHP General Mailing List (http://www.php.net/) To unsubsc