print("
Display Email Addresses
");
$mysql_link = mysql_connect ("shredpat.ipowermysql.com","kennedy","3z23po57");
mysql_select_db("kennedy_contacts",$mysql_link);
$query = "SELECT * FROM tbl_Contact order by FullName";
$result = mysql_query($query,$mysql_link);
$cntquery = "SELECT Count(*) FROM tbl_Contact";
$cntresult = mysql_query($cntquery,$mysql_link);
$counttot = mysql_fetch_row($cntresult);
if($result)
{ print("
The following information is in the contact database: ");
print("");
print("Name | E-Mail Address |
");
while($row = mysql_fetch_row($result))
{
print("
");
print("$row[0] | $row[1]");
print(" |
");
}
}
print("
Total records in Database $counttot[0]");
?>
"Click the back button to add another or follow this link to return to "
Home Page