I am using propel. I'm posting a description to page and saving it by propel query
$desc="my school's is here that why "" i have work"; // this data is posting by my form input.
$education->setEddescription($desc);
$education->save();
but in database it is not escaping the ' and "" values.
thanks.