I have encounter a problem. I have a NSString and I would like to send this string to server to insert to database. But I have problem when NSString is (for example):
This isn't a student.
And this string is sent to server side with this script:
$value = $_POST["stringvalue"]
insert into stringtable (stringvalue) values ('$value');
Because of "isn't" part, the insert query can not run and fail.
Now I would like to escape characters, that means "isn't" will become "isn\'t" so that I can insert to database. I would like to ask how can I do it?
Thank you.