Sounds like you need to post your form values to a page that searches on those values and creates another form? Basic queries using php would do the trick. Use the while loop to write your option tags.
So Page 1's form has this:
<select name=type1><option value=a>Option A</option>
<option value=b>Option B</option>
</select>
Then page 2 has a query
<select name=type2>
<? $qry=mysql_query("SELECT whatever from database WHERE something = '$type1` ");
while ($array=mysql_fetch_array($qry)) {
echo "<option>" . $array["whatever"] . "</option>";
} ?></select>
Does that help?
Reputation Points: 15
Solved Threads: 0
Junior Poster in Training
Offline 50 posts
since Mar 2005