Hello I have the following script
show.php
<?php
include "db.php"; // <== db connection
include "sys.php"; //<== main system
// statment to show $result as table
?>
I need the correct statement that reads my table data and shows it as table
I have 1 table with 7 rows:
username| name| age| etc
They are about 500 records that needs to be displayed 20 per page
How do I build the correct statement ?