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, 0 insertions, 25 deletions
diff --git a/apis/webservice/getinfo.php b/apis/webservice/getinfo.php
deleted file mode 100644
index 3404008e..00000000
--- a/apis/webservice/getinfo.php
+++ /dev/null
@@ -1,25 +0,0 @@
-<?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" => ""));
-}
-