ok i have a html form it submits to a php page where i want to take the form in put and if it has any < HTML > tags in i want to replace with < or & l t ; (without spaces) how would i do this? lal helps is appreciated..
htmlspecialchars($field_name); will encode HTML tags into the sepcial character codes...it's a great way to do it...