Previously, I have described how to Create Dynamic Insert SQL script Using PHP. Let’s create a dynamic update sql query based on data and table name. We ll create a method to update a row data into the mysql table, You can use this method into the foreach method to create dynamic update query. Simple […]
Php
Simple PHP MVC Framework Example



Today we will discuss how to create MVC sample application in PHP. Because now days in php everybody creating class based structure of application and main problem in class based the all the things is in same function(such as view, model and action).So with help of MVC we will separate all layer.The MVC stands for […]
Export HTML Table Data to Excel, CSV, PNG and PDF using jQuery Plugin



In this jQuery tutorial, We will export HTML table data into Excel, CSV, PNG and PDF using jQuery Plugin.Exporting data into a format is a very common features in website. There is a lot of plugin which are used to export table data into xml, csv and png format but that will use for separate […]
API Throttle Using Laravel 7



This tutorial help to implement API throttle in Laravel 7.This help to prevent mass usage of API as well as DoS attack.You can block the malicious API user after implementing throttle middleware into laravel api. The Laravel has built-in rate limiting which limits the actions/responses per minute. You can change the API wrapper for the […]
Live Username Availability using PHP & jQuery



In this tutorial, We will learn how to implement username live check availability feature using PHP, jQuery and MySQL.We will send AJAX request to server-side script(PHP) and get response from ajax request as a JSON object.