Hanchan,
You have a form on your HTML page. It contains a form āfieldā in it. You alter this by using the SELECT
and drop it down to the option you want.
From there, you have two choices. 1) process it server-side. 2) process it client-side.
To handle it server-side, you should use PHP or ASP or any other server language to read the value
and post back a page to show the updated version.
To handle it client-side, you should use Javascript or JQuery to process the data dynamically.
Either way will work, but, this really depends what you really want to do with this data. If you are
planning on the creation of a full website that takes this selection and saves it inside a database,
then you should do the processing server-side as it is much more secure. If you are just playing around
with code functions or are just making a site that does not matter about being secure, do it on the
client-side.
You should not use method=āgetā as it shows the data on the page and is easy to hack. You should
use the method=āpostā version. For handlind this process on the client, you can just use a simple
Javascript to grab the data. For Client-Side Javascript, you assign an ID name to the SELECT. JS uses
IDās not nameās.
If you explain what type of site you are creating, perhaps we can help you with the code further.
So, lots of ways and lots of programming tools can handle this simple process. Hope this helpsā¦