PUMP MANUFACTURERS IN THE DATABASE


October, 2012

Everyone of these manufacturers can be found in the database.
"; $query = "SELECT DISTINCT manufacturer FROM data ORDER BY manufacturer ASC"; if(!($connection = @ mysql_connect($hostName,$username,$password))) die("Could not connect"); //select database to edit if(!(@ mysql_select_db($databaseName, $connection))) showerror(); if(!($result = @ mysql_query($query))) showerror(); //cycles through all the drive type names in db and populates the html select while($row = mysql_fetch_array($result)) { echo $row['manufacturer']"; echo "
"; } ///end while mysql_free_result($result); echo "
"; // standard html web page footer require 'footer.html'; ?>