Hello, I'm new in both Java and PHP and I'm trying to build a drop down menu with options for language select for a web site. I.E. :
<select onchange="windo w.location='wha tever.php?langu age='+this.valu e">
<option value="eng" <?if ($language == "eng") {?>selected<?}? >>English</option>
<option value="ger" <?if ($language == "ger") {?>selected<?}? >>German</option>
</select>
I wonder if the selected option value can call a javascript or some function which will display the dynamic menu as well (*.gif buttons in JavaScript with onMouseover event, for example...)
Please HELP!
Thanks
<select onchange="windo w.location='wha tever.php?langu age='+this.valu e">
<option value="eng" <?if ($language == "eng") {?>selected<?}? >>English</option>
<option value="ger" <?if ($language == "ger") {?>selected<?}? >>German</option>
</select>
I wonder if the selected option value can call a javascript or some function which will display the dynamic menu as well (*.gif buttons in JavaScript with onMouseover event, for example...)
Please HELP!
Thanks
Comment