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 ...