what do you mean url name?
I would think you would do something like
Code:
<select name="webLink">
<option value="http://www.domain.com">Title</option>
<option value="http://www.domain.com">Title</option>
<option value="http://www.domain.com">Title</option>
</select>
that would select which link to go to, however you would need to process that somehow, which would either require javascript or some other scripting language as to how its going to result in your going to that link. If you wanted to follow the link once the user selects the title, you could do something like
Code:
<select name="webLink" onchange="javascript:window.open(this.value,newWin).focus();">
<option value="http://www.domain.com">Title</option>
<option value="http://www.domain.com">Title</option>
<option value="http://www.domain.com">Title</option>
</select>
note
this is untested so it may not work properly
Bookmarks