Hi Everyone, Got a really strange problem with a mysql select query not displaying results in select dropdown.
I have a small db table id,position,name and I am trying to display just the names where the position is GK
Here is my query
$result_dglass = mysql_query("select name from team where position like '%gk%' order by id Asc");
The strange thing is, It looks like the drop down is being populated with the correct amount of results, But the text is not being displayed.
I have tried populating the same dropdown with a different query to a different table and that populates perfectly.
and ideas where I am going wrong ?
Thanks in advance