Can anybody tell me how I can fill a combobox with database dat??
I have a combobox with these settings:
<form name="framecombo">
<div align="center"><br>
<div align="left">
<script language="javascript">
<!--
//set below variable to "1" to open combo in another frame, "2" to open in full window (parent window)
var openmode=1
//if above set to 1, specify the name of the frame you wish the combo to load in below
var targetframe="vlak"
function jumpbox(){
var destination=eval("window.parent."+targetframe)
var thebox=document.framecombo
if (openmode==2)
destination=window.parent
destination.location=
thebox.framecombo2.options[thebox.framecombo2.selectedIndex].value
}
//-->
</script>
The list is about 60 items long which I have to update manually... :-(
I'd like to get the listing from de database and the title as the option...
Can anybody tell me how to do this??
Thanx!
Taco