I have checked both get_magic_quotes_gpc() and get_magic_quotes_runtime() in my PHP code, and they are not turned on, but I am still getting single quotes stored in MySQL as "\'" when using Propel.
I don't want to have to use stripslashes() if I can avoid it. Is there something that I am doing incorrectly here?
$emp = new Employers();
$emp->setCompanyname($companyname);
$emp->save();
Joe's Company is stored as Joe\'s Company in MySQL.