Sorry. Your request cannot be processed right now. Please try later. Thank you.

'); exit(); } if ($dbcnx) { echo ('

Here is the current listing.

'); } @mysql_select_db('database_webdata',$dbcnx); if(!@mysql_select_db('database_webdata')){ die ('

Unable to locate that database at this time.

'); } /* //if (isset($_POST['sendinfo'])){ $firstname = $_POST['firstname']; $lastname = $_POST['lastname']; $phone = $_POST['phone']; $email = $_POST['email']; $sql = "SELECT * from contacts SET firstname = '$firstname', lastname = '$lastname', phone = '$phone', email = '$email'"; WHERE firstname LIKE "%j%" OR firstname LIKE "%mi%" */ //Request the lines $result=@mysql_query('SELECT * from contacts ORDER BY lastname'); if (!$result) { die('

Error performing query: ' .mysql_error().'

'); } //Display the text of each line in a table echo (''); while ($row = mysql_fetch_array($result)){ echo (''); } echo ('
'.$row['firstname'] .''. $row['lastname'].''.$row['phone'].''.''.$row['email'].'
'); ?>

If you would like to see the information sorted in a different order, click here.

Return to Contact page.

Return to WebData home.