Buck wrote:
Here is something that I have used for radio buttons. I build the query for the database and get the result with:
$mysql_result = mysql_query($query_done, $mysql_link);
while($row = mysql_fetch_row($mysql_result))
echo"
<input type=\"radio\" value=\"$row[0]\" checked name=\"edit_row\">$row[1]";
I forgot to put the second variable in. Now you get a radio button with text next to it, $row[1] or what ever.
Sorry