Hi
i have a two column table called ' places' in there is a countryID and eventCountry column.
The idea is that a user selects a country from the drop down menu and when they choose go they get taken to another page.
this is how far i have got
mysql_connect('localhost', 'poo', 'poo123')or die ("Database connection error");
mysql_select_db('booking');
print("<select name=\"countryID\" size=1>\n");
print("<option value=\"b\">Select");
print("<option value=\"b\">-----");
while($row = mysql_fetch_array ($places))
{
print("<option value=\"$row[countryID]\">$row[eventCountry] \n");
}
print("</select>\n");
?>