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 […]
PHP
Here you will find useful PHP tips and tutorials.
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 […]
Export Data to Excel File in Laravel
Data Export to Excel (xlsx or xls) format is feature of web project to allow users to export MySQL data for further use. In our previous tutorial you have learned how to export data to excel with PHP, in this tutorial you will learn how to export data to excel in Laravel framework. As PHPExcel […]