Select Options From Mysql Query
I want a select/ dropdown menu with its options coming from the database using mysql select query. PROBLEM: the dropdown menu displays the correct number of items inside the databa
Solution 1:
Change
echo"<OPTION VALUE='".$row[0]."'>".$row[0]."</OPTION>";
to
echo"<OPTION VALUE='".$result[0]."'>".$result]."</OPTION>";
Post a Comment for "Select Options From Mysql Query"