i have went thru this script forward and backwards a million and still have problems, i am not getting any error msgs, i am completely lost. please help.
<?php # Script 10.4 - view_users.php #4
// this script retrieves all the records from the user table
// the new version paginates the query results
$page_title = 'View the Current Users';
include ('include/header.html');
echo '<h1>Registered Users</h1>';
require_once ('mysqli_connect.php');
// Number of records to show per page
$display = 10;
// determine how many pages there are
if (isset($_GET['p']) &&