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.

link|improve this question

57% accept rate
feedback

4 Answers

up vote 4 down vote accepted

Don't rely on input sanitation methods, it is best to insert data using only parameterised statements. Learn more about Bobby Tables and more specifically how to avoid it in PHP.

One particular problem with input sanitation is that you must do it before every insert, and sometimes it may be done twice accidentally, and so on. Simply used parameterised statements and it will be easier in the long run.

link|improve this answer
feedback

I guess this is a problem of PHP instead of iPhone SDK?

link|improve this answer
feedback

You can use these PHP methods on the server side :

$value = addslashes($_POST["stringvalue"]);

To add slashes on your $value (addslashes)

$value = html_special_chars($_POST["stringvalue"]);

To escape all special chars. addslashes

It's not an iPhone problem I think.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.