Hi all !
I'm currently working on a guestbook for my Page. Now i noticed that when somebody uses php tags like <? or ?> in his post - the whole Text isn't saved in my database. What can i do to save this text in that way it was typed in without making the tags getting interpreted by the parser ?
Thanks in advance
Hotkey
what if you used something like
$code = str_replace( "<", "<" , $code ); $code = str_replace( ">", ">" , $code );
yep that worked! Thanks a lot !!