I tried the code you gave me but it is still not working I get the options box but is just says content ?>. Here is my code.
<html>
<head><center><strong>Barberino Car Search</strong></center></head>
<body>
<form method="get" action="process.php">
<select name="pick">
<?
$user="vminter_admin";
$host="localhost";
$password="12041980";
$database="vminter_cars"
$connection = mysql_connect($host,$user,$password)
or die ("couldn't connect to the server");
/ Query value and content /
$items = mysql_query('SELECT * FROM inventory');
if (mysql_errno()) die(mysql_error();
/ Cycle through an build option elements /
while($item = mysql_fetch_object($items))
{
?>
<option value="<?= $item->value ?>"><?= $item->content ?></option>
<?php } ?>
</select>
<input type="submit" name="submit" value="Push Me" />
</form>
</body>
</html>