How would I create a select box inside of a table? normally I use an echo per <option> that I want to use, but how do I do that inside of a <td> tag??
Its no different than outside of a table
<table> <tr> <td> <select name="blah"> <option value="1">one</option> </select> </td> </tr> </table>
hrm, interesting. thanks. Guess it just looked/seemed different because of not using separate echos and it being inside the table tags, thanks!