Mysql
 sql >> Base de données >  >> RDS >> Mysql

comment obtenir des données json à partir d'une demande de publication sur iphone

Je n'ai pas fait cela avec l'iPhone, mais il semble que ce sera simplement :

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
}

Plus d'informations :

http://php.net/json_decode

http://php.net/pdo