[iOS/Android开发之WebService]How to write a webservices using php with json format

来源:互联网 发布:公司取名软件下载 编辑:程序博客网 时间:2024/05/16 01:58

How to write a webservices using php with json format


Hi friends, In this post i would like to explain about how to write a web services using php with the json format. Now a days mobile applications are more popular. Most of mobile applications are implementing for existing websites. To isplay information from database to mobile one mediator is require. So that mediator implementing using php and the output as JSON format to easy to retrieve.

How to write a webservices using php with json format | Anil Labs

How to write a webservices using php with json format | Anil Labs

Web service for login method. Code is continue with user class which i mentioned in my previous post object oriented programming in php

Login Method Code

 function login($username,$password){      $query = "select * from users where username='".$username."' AND password='".$password."'";      $result = mysql_query($query);      $num_rows = mysql_num_rows($result);      return $num_rows; }

In the web service page.

  <?php /**********************************************************************     * Author       :   Anil Kumar Panigrahi     * E-mail           :   kumaranil21@gmail.com     * Created on       :   14th June 2011     * Version      :   1.0     * Project      :   Wevservices     * Page         :   Login Webservice     * Company          :   Anil Labs  (http://www.anil2u.info)     * Modified on      :        * Modified by      :   *************************************************************************/// Includes the class which have the all functionsini_set('display_errors', '1');include_once("user.class.php");/* Created object for User class*/$web = new users();/* This file return the sucess or failure with provided details ( username, password ) */// USER NAME - user_name// PASSWORD - passwordif(isset($_REQUEST) && ($_REQUEST['user_name'] != "") && ($_REQUEST['password']!="") ){    $result = $web->login($_REQUEST['user_name'],$_REQUEST['password']);    echo json_encode(array('results'=>$result));}/* Provided output in the json encoded format */// Call the database disconnection method$web->connection_close();?>

Call this method as

http://localhost/login.php?username=anil&password=123456

Output:

if correct {“result”:1} else {“result”:0}




原创粉丝点击