summaryrefslogtreecommitdiff
path: root/app/v1_php/api/user/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/v1_php/api/user/index.php')
-rw-r--r--app/v1_php/api/user/index.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/app/v1_php/api/user/index.php b/app/v1_php/api/user/index.php
new file mode 100644
index 0000000..495bd2a
--- /dev/null
+++ b/app/v1_php/api/user/index.php
@@ -0,0 +1,25 @@
+<?php
+
+/*
+Table User : id, firstname, lastname, mail, password
+Unique key : mail
+*/
+
+require_once("../mysql_connect.inc.php");
+
+$firstname=mysql_real_escape_string($_POST['firstname']);
+$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')";
+$res=mysql_query($req);
+
+if ( mysql_num_rows() === 1 ) {
+ //TODO header 201, "OK : CREATED"
+ echo "header 201, OK : CREATED\n";
+} else {
+ // header 400, "Erreur"
+ echo "header 400, Erreur\n";
+}
+?>