Hello All,
This is sort of a curiousity question, as I am trying to determine if it has anything to do with issues I'm currently having, losing pieces of data after submitting a form.
Is there a difference in the outcome of the following two lines (rearranged)
mysql_real_escape_string(htmlentities($string));
htmlentities(mysql_real_escape_string($string));
Can you expect that the result will be the same either way?
thanks
Doug