Jump to content

dynamic drop down lists


blev

Recommended Posts

Can anyone point me in the way of a good tutorial or example code concerning drop down lists that change when you select an option, instead of selecting an option and then clicking submit

here's an example of this

[a href=\"http://www.soccerstats.com/\" target=\"_blank\"]http://www.soccerstats.com/[/a]

in the top left hand corner there is a drop down box that says select league
Link to comment
https://forums.phpfreaks.com/topic/7773-dynamic-drop-down-lists/
Share on other sites

This is JavaScript, not PHP.
If you will look in the source code, you will find these lines:
[code]<select name="countryLeague" onChange="location.href=this.options[this.selectedIndex].value">
            <option value="http://www.soccerstats.com">Select league</option>
            <option value="http://www.soccerstats.com/latest.asp?league=england">England</option>[/code]And so on...

Learn Javascript to do this (the onChange event and functions that redirect the browser).

Orio.
Link to comment
https://forums.phpfreaks.com/topic/7773-dynamic-drop-down-lists/#findComment-28350
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.