";
}
// sql select command
$query = "SELECT * FROM Persons"; // create the sql command
$result = mysqli_query($db_server, $query); // execute the sql command
if (!$result) die ("Error executing sql command");
$rows = mysqli_num_rows($result); // get number of rows retrieved from the command
//echo "Retrieved " . $rows . " row(s)
";
?>