$foo = 'Some Random Quote: "PHP is better than Rails"';$bar = mysql_real_escape_string($foo);// Some Random Quote: "PHP is better than Rails"echo $foo;// Some Random Quote: \"PHP is better than Rails\"echo $bar;