Behind the scenes database

admin

Administrator
Staff member
I want a drop down list of options which then load in several values into a form automatically. How do I do this?<!--content-->all depends on where the values are coming from.<br />
<br />
this is a generic way of doing things.<br />
<br />
<form><br />
<select name="something"><br />
<option value="first">First</option><br />
<option value="second">second</option><br />
</select><br />
</form><br />
<br />
now, if somebody selected an option and click on send it would read like this<br />
<br />
something=first - if I clikced on the first option. is this what you are after?<!--content-->Yes I am happy with that example, but I am having trouble actually doing the active part of the form.<br />
<br />
I have started a different thread asking how to get the behind the scenes stuff working.<br />
<br />
Link to other thread (<!-- m --><a class="postlink" href="http://www.htmlforums.com/showthread.php?s=&postid=95872#post95872">http://www.htmlforums.com/showthread.ph ... #post95872</a><!-- m -->)<!--content-->
 
Back
Top