create a table students: SQL> create table students (id int primary key auto_increment, name varchar(200), age va...
Home » Archive for May 2018
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 ...
Subscribe to:
Posts (Atom)