Friends of Hobbiton
//Check to see if access the table was successful or not if (!$result){die("Access to the table failed" . mysqli_errno());} else { while ($item=mysqli_fetch_array($result)) { echo "
" . $item['first_name']. ' ' .$item ['last_name']. "
". $item['email_address'] . "
\n"; } } ?>