Tuesday, March 12, 2019 How to pass data from html form to php file on server using jquery $.ajax :- Pass data from html form to php file on server using jquery $.ajax :- Step 1:- Write code for form.html file:- <!doctype html> <...
Monday, August 27, 2018 Jquery Pop Up example for login and Registration form Jquery Pop Up example for login and Registration form <!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap Example</title> <meta charset="...
Saturday, July 21, 2018 php array to json php json_encode array how to parse php array to json PHP JSON Parsing What is JSON JSON stands for J ava S cript O bject N otation. JSON is a standard lightweight data-interchange format whi...
Friday, May 25, 2018 insert multiple fields using foreach loop create a table students: SQL> create table students (id int primary key auto_increment, name varchar(200), age va...
Monday, May 21, 2018 php pagination script with mysqli php pagination script with mysqli <?php $con=mysqli_connect("localhost","root","","payroll"); $per_page = 2; //per page r...
Monday, May 14, 2018 how to display multiple checkbox value from database in php how to display multiple checkbox value from database in php Step 1: SQL> create table userrecord ( id int primary key , name varchar(200) ); Step 2: write code for checkbox.php file: <?php ...
Thursday, March 30, 2017 PHP interview Questions 1. What is PHP? PHP is a server side scripting language commonly used for web applications. PHP has many frameworks and cms for creati...