I am working within Xcode and have an iOS application that you input information and the app connects to a DB via a PHP file. There is no problem when uploading, a name or a
use mysql_real_escape_string like
$firstName = mysql_real_escape_string($_GET["firstName"]);
before all get values
Thanks