Hominid Database

This page is still under construction but will soon be a dynamic database giving access to hominid fossil evidence. The database will alow searching, sorting and querying. I also hope to integrate it with google maps to allow the location of each find to be plotted and accessed from within the google map API.



include_once("DataBase.Connect.php"); $link = mysql_connect($dbserver, $username, $password) or die("Could not connect: " . mysql_error()); mysql_select_db("utahgeology",$link) or die ("Can\'t use dbmapserver : " . mysql_error()); $result = mysql_query("SELECT * FROM hominid",$link); if (!$result) {echo "CANNOT ACCESS THE SUPPLIED DATABASE TABLE";} while($row = mysql_fetch_array($result)) { echo '
Species:' . $row['Species_Name'] . ' Location:' . $row['Site'] . ' Discovery Date:' . $row['Date'] . '
Discovered By:' . $row['Descovered_By'] . ' Estimated Age:' . $row['Estimated_Age'] . ' Fossil Name:' . $row['Fossil_Name'] . '
Notes:' . $row['Interpretation'] . '

'; } mysql_close($link); ?>