Hello,
I am trying to use the mysql_real_escape_string() function, but I can't seem to use it without losing the content of the variable. When I use
$act="It's now or never"
$act=mysql_real_escape_string($act);{
then attempt to insert the value of $act--it comes out null.
I have established the database connection, so that does not appear to be the problem.
Any idea what I'm doing wrong.