function schools(){
$conn = db_connect();
if (!$conn)
return 'Could not connect to database server - please try later.';
echo '<select name="school">';
$school = mysql_query("select college_name from sv_colleges");
}
I would like to echo all the values that are in colum 1, as a drop down box.
I wanted to echo this for each value. I am trying to make a drop down box of all the values.
<option>Colum Value</options>