Ok, I escaped the string, inserted into the database and then I select from the database on another page, echo the data I want, I still have backslashes before quotes. The slashes ARE in my database. On the inital page, I esaped by using
$desc=mysql_real_escape_string($desc);
Then
mysql_query("INSERT INTO school (base, school, desc) VALUES ('$base', '$school', '$desc')";
should I instead
mysql_query("INSERT INTO school (base, school, desc) VALUES ('$base', '$school', mysql_real_escape_string($desc))";
I am only working with $desc until I have everything worked out.