diff options
author | Julien Sere <jsere> | 2011-01-22 11:50:29 +0000 |
---|---|---|
committer | Julien Sere <jsere> | 2011-01-22 11:50:29 +0000 |
commit | 12f6cc3a6f90a67c1d922dd3d46a368b1066dee1 (patch) | |
tree | dce223a8bf2386ba0fa125414a6045df3ac198ca /app/v1_php/api/user/index.php | |
parent | 0180447ad17eb36e54dca74f9854657d7ec5fa9a (diff) | |
download | 2011-usi-12f6cc3a6f90a67c1d922dd3d46a368b1066dee1.tar.gz 2011-usi-12f6cc3a6f90a67c1d922dd3d46a368b1066dee1.tar.bz2 2011-usi-12f6cc3a6f90a67c1d922dd3d46a368b1066dee1.zip |
Implémentation de user et game.
git-svn-id: file:///var/svn/2011-usi/trunk@8 db941bf7-0cb3-4dda-9634-87faf64f93a7
Diffstat (limited to 'app/v1_php/api/user/index.php')
-rw-r--r-- | app/v1_php/api/user/index.php | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/app/v1_php/api/user/index.php b/app/v1_php/api/user/index.php index 495bd2a..3b27b03 100644 --- a/app/v1_php/api/user/index.php +++ b/app/v1_php/api/user/index.php @@ -12,14 +12,12 @@ $lastname=mysql_real_escape_string($_POST['lastname']); $mail=mysql_real_escape_string($_POST['mail']); $password=mysql_real_escape_string($_POST['password']); -$req="INSERT INTO User (NULL,'$firstname', '$lastname', '$mail', '$password')"; +$req="INSERT INTO User VALUES (NULL, '$firstname', '$lastname', '$mail', '$password')"; $res=mysql_query($req); -if ( mysql_num_rows() === 1 ) { - //TODO header 201, "OK : CREATED" - echo "header 201, OK : CREATED\n"; +if ( $res===true && mysql_affected_rows() === 1 ) { + header("OK : CREATED", true, 201); } else { - // header 400, "Erreur" - echo "header 400, Erreur\n"; + header("erreur", true, 400); } ?> |