Mysql
 sql >> Database >  >> RDS >> Mysql

come ottenere i dati json dalla richiesta di post di iPhone

Non l'ho fatto con l'iPhone ma sembra che sarà solo:

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
}

Maggiori informazioni:

http://php.net/json_decode

http://php.net/pdo