Mysql
 sql >> Datenbank >  >> RDS >> Mysql

So erhalten Sie JSON-Daten von der iPhone-Postanforderung

Ich habe das nicht mit dem iPhone gemacht, aber es sieht so aus, als würde es einfach so sein:

if(isset($_REQUEST['json']) && $_REQUEST['json']) {
    $jsonObj = json_decode($_REQUEST['json']);
    //mandatory sanitizing and verification here
    //PDO examples
    //$stmt = $db->prepare('INSERT ...');
    //$stmt->execute(array($jsonObj->userId, $jsonObj->specialData));
    //check statement execution
}

Weitere Informationen:

http://php.net/json_decode

http://php.net/pdo