Re: Dynamic PHP drop down menu
You have two options with a select type dropdown to get the user to another page after they choose it from the dropdown. The first is to use onChange='javascript_function()' in the opening select tag. When the form changes, the javascript_function() would execute. You can also use your standard submit button <input type="submit" value="Go" /> or something like that. I'm not really sure what your question is, but I think this information should be helpful.
|