Not done this before but is it possible? Say if you wanted to show some select options from a specific table in your database, could you do it like this?
Probably confusing to some but would appreciate the advicePHP Code:$query = mysql_query("SELECT * FROM `tablename` WHERE `selects`");
echo ("<form method='post' action='blahhhh'>
Selects:<br>
<select name='select' size='1'>
<option selected>Select one</select>
while ($cat = mysql_fetch_array($query)) {
<option value='$select[id]'>$select[name]</option>
}
</form>");
Closed by Invent (Forum Moderator): Thread closed due to prevent further arguments and going off-topic.













