summaryrefslogtreecommitdiffstats
path: root/apis/webservice/getinfo.php
diff options
context:
space:
mode:
Diffstat (limited to 'apis/webservice/getinfo.php')
-rw-r--r--apis/webservice/getinfo.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/apis/webservice/getinfo.php b/apis/webservice/getinfo.php
new file mode 100644
index 00000000..3404008e
--- /dev/null
+++ b/apis/webservice/getinfo.php
@@ -0,0 +1,25 @@
+<?php
+if(isset($_SESSION['userid'])){
+ $sql = "select user.login, user.fullname, user.email, cities.name from"
+ ." `user` left join cities on user.city=cities.cityid"
+ ." where user.userid= :userid";
+
+ $user=Database::queryFirst($sql, array("userid"=> $_SESSION['userid']));
+ $ret = array(
+ "login"=>$user['login'],
+ "name"=>$user['fullname'],
+ "email"=>$user['email'],
+ "city"=>$user['name'],
+ "errormsg" => "",
+ "status" => "ok",
+ "msg" => "Get informations of user successful"
+ );
+ echo json_encode($ret);
+
+}else{
+ echo json_encode(array(
+ "errormsg"=> "Not logged in",
+ "status" => "error",
+ "msg" => ""));
+}
+