Showing posts from 2015

Simple login Web services Using PHP

$jsonString = file_get_contents('php://input'); $jsonObj = json_decode($jsonString, true); $data = $jsonObj; if($data["mode"] == "login")     { $name=…

Load More
That is All