Hello there, I basically made a web script which is hosted on sourceforge which is a news based system. I was wondering if someone could give me advice on a bug I have.
When the user wants to submit news they are taken to a page that has a textarea, where they enter in the news they want to submit.
if the user includes a ' in a word for example, example's a error accurs.
would I have to some how analize the text and replace it like example\'s.
This is how I access the textarea
$News_Body = $_POST['News_Body'];
then it is passed on to a function which enter's the news into a db table.
thanks Frank.