Posts

Excel To Json Converter

http://beautifytools.com/excel-to-json-converter.php Excel To Json Converter Convert excel to Json using Excel To Json Converter. Click browse for an excel file and convert its data to Json. Browse Convert Beautify json Editor Options Download Clear 1

PHP RESTful Web Service

Image
http://phppot.com/php/php-restful-web-service/ Representational State Transfer (REST) is an architecture style. Web services that follow the RESTful principles are RESTful services. In RESTful services, URIs are used to access the resources. Data and functions are called resources in the RESTful glossary. So eventually data and function are what we will access via services. In this RESTful web services tutorial, I will show you how to create a RESTful web service. I will not be using any framework for this, just plain PHP. Most of the times I do prefer to write custom code  without depending on frameworks , this approach has its own advantages. On the Internet, I have seen web services tutorials and most of the times they all turn out to be error-prone or incomplete. I tested those RESTful services using a REST client and mostly they fail. view demo Objectives of this RESTful Web Service Example Build a RESTful Webservice. With plain PHP, without dependency on any fr...

A simple web service using PHP, JSON and MySQL

Image
http://robertobartolome.com/a-simple-web-service-using-php-json-and-mysql/ What is this post about? In today’s web and mobile apps web services are used to access someone else’s resources; this could be to communicate two processes over the network, get some data from a database or fire up a process in a remote host. Although there are still web services being developed based on technologies such as XML and SOAP, the de-facto standards are JSON and REST. A web service based on REST is called a RESTful service. Almost every RESTful service uses HTTP as the default protocol. So, put these facts  together and you will probably conclude that a simple good example of a web service could be a service to access someone else’s database, get some data from there in JSON format, or save some data using a POST message. Well, this post is about all of these. Description of the test app I have defined a  user  table in a remote  dev_webservice_php_json ...