Hi.
I really need some html help. The basic gist of what I need to do is to place several columns of data in a select box so it's readable.
Ideally I would use a table like so (would be many rows in the real appliaction) :
However this results in the data being shown outside of the text box. Is there an way to achieve this effect?
Thanks,
Ben.
I really need some html help. The basic gist of what I need to do is to place several columns of data in a select box so it's readable.
Ideally I would use a table like so (would be many rows in the real appliaction) :
Code:
<table> <select name="something" size="10"> <option value="w"><tr><td>name</td><td>price</td></tr></option> </select> </table>
Thanks,
Ben.
Comment