Forum Moderators: open
have one box that is a drop down list of vehicle years
ex 2004
the next box that says make of vehicle
ex nissan mazda toyota
the next box would be model
ex maxima
Or if there is a program that does it thanks for any help in advance.
Or If I need to program this where is a good place to get someone to program it.
Thanks
Is it java?
Not Java. Possibly JavaScript.
If your lists were static and not dependent on each other then it could be built just in HTML (that possibly sent its results back to a server side script).
However, by the sounds of it, your lists are dependent on a previous selection in which case you probably would need to use JavaScript.
If your lists are potentially very large then you might need to consider using AJAX (a combination of JavaScript and a server-side language) to send only the relevant data down the wire. Or you could go for a purely HTML / server-side solution (no JavaScript) - which your solution needs to fall back to anyway in order to be accessible to those with client side scripting disabled - but this is less interactive/friendly for your users.
The exact solution really depends on what you are trying to achieve.