I want to populate my select list with local schools based on the postcode entered so far i can’t even populate the select list with any database.
[php]
".mysql_error()); /* this array connects to the query and the table*/ $row = mysql_fetch_array($res); /*this array stores all the values from customerID*/ if($row['postcode'] != $postcode) { $error[] = 'This postcode is invalid'; } $sql=mysql_query("SELECT schoolID,name FROM school_info"); if(mysql_num_rows($sql)){ $select= ''; while($rs=mysql_fetch_array($sql)){ $select.=''.$rs['name'].''; } } $select.=''; echo $select; } ?>