In our previous PHP tutorial, we have explained how use Prepared Statement with PHP and MySQL. In this tutorial we will explain how to create Daemon script in PHP. PHP is a server side language primarily used for developing web applications, but it can also be used as a background script for many purposes like […]
Tutorials
CRUD Operations in Laravel
In our previous Laravel tutorial, we have explained how to build Restful API in Laravel. In this tutorial we will explain how to perform CRUD operations in Laravel. CRUD (create, read, update, delete) are common functions in any web application. If you’re developing application using Laravel and looking CRUD functionality then you’re here at the […]
Using Prepared Statement with PHP & MySQL
In our previous PHP tutorial, we have explained how to convert an Array to JSON in PHP. In this tutorial we will explain how to use Prepared Statement to avoid SQL injection with PHP and MySQL. A Prepared Statement (parameterized statement) are created with query template with placeholders instead of providing actual values. The placeholders […]
Build Inventory System with Ajax, PHP & MySQL
Inventory Management System is a tools for managing inventory data like orders, purchase, sales etc. Generally, desktop based inventory management systems are used to manage inventory data but its limited to that specific system. So the web based systems are more useful than desktop application as the web application can be accessed anywhere we need. […]
Poll and Voting System with PHP and MySQL
Poll or Voting system is used in web applications for survey purpose. The Poll system is mostly used in eCommerce websites, News websites etc. to take views of users. So if you’re developing a website and wants to implement voting system then you’re here at right place. You can easily develop voting system using PHP […]