I am using mysql_real_escape_string on all of my queries. addslashes is not being used, however every time a ' is used it is escaped on the output - it is like it is being escaped by mysql_real_escape_string and then again by a PHP setting of some kind.
Is anyone aware of any setting that would cause this, it is a pain to use mysql_real_escape_string and then stripslashes?