blev Posted April 18, 2006 Share Posted April 18, 2006 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 submithere'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 More sharing options...
Orio Posted April 18, 2006 Share Posted April 18, 2006 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 More sharing options...
blev Posted April 18, 2006 Author Share Posted April 18, 2006 thanks alot Link to comment https://forums.phpfreaks.com/topic/7773-dynamic-drop-down-lists/#findComment-28352 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.