Configure PHP 7 and SQlite3 in Windows

Introduction In this tutorial I am going to show you how to configure PHP 7 and SQLite3 in Windows environment. By default SQLite3 extension comes with PHP 5.3.0 or higher version of PHP. So you don’t need to download it. SQLite3 is not enabled by default in Windows environment. So you must enable it before you use it. Why do…

REST API CRUD Example in PHP PDO MySQL

REST APIs In this tutorial I am going to show you how you can work with RESTful webservice or REST webservice in PHP PDO, MySQL. The most important concept in REST is resources, which are identified by global IDs — typically using URIs. Client applications use HTTP methods (GET/ POST/ PUT/ DELETE) to manipulate the resource or collection of resources….