Forum Moderators: open
I am having a **BLONDE** moment I need to have a simple config area in thecode that will define what the values of the dropdown options are.
Here is the code:
THE PROBLEM IS THAT THE END VALUE READS $MyValue1 instead of the actual string. Any help would really be appreaciated.
<SCRIPT>
//set variable
$MyValue1="TEST Value"
$MyValue2="TEST Value"
document.write("<form name='test'>");
document.write("<select size=1 name=options onchange=test.text1.value=test.options.value>");
document.write(" <option>Choose one...</option>");
document.write("<option value=$MyValue1>option1</option>");
document.write("<option value=$MyValue2>option2</option>");
document.write("</select>");
document.write("<input type=text name=text1>");
document.write("</form>");
</SCRIPT>
Kind Regards
Walker