Dear all,
I want to write the html code to link to other website by opening new window.
The code is below
<select name="menu2">
<?while (list($ch_name,$website)=mysql_fetch_row($result)):?>
<?if (trim($website)!=""){?>
<option value="http://<?echo trim($website)?>"><?echo trim($ch_name)?>
</option>
<?}endwhile?>
</select>
However, the new website can be linked in the same frame but not in the new window frame. Please give me solution how to open the window frame, thanks
Simon