anything which interprets HTML will have < text > be empty...
tutorials
because magic_quotes are ON,
" becomes =>
so we need to stripslashes and do HTML special chars before displaying data back.
user inputs "
becomes \"
addslashes sees this as two special characters, and it becomes \\+\" or \\\"
do a view source to see how htmlspecialchars converts it to "e, etc.