Hi BetterThanHybrid,
You'll have to explain a little bit more about what your setup is like for us to really help you. What do you need to do with the data once you "extract" it? Save it in a database? Email it to someone?
Without knowing the details, I can only recommend this. It's a PHP-powered form processor...very robust and secure.
Another tip about writing forms: If you have a dropdown, you need to specify it's value. If there is no value, then you obviously won't get any results. How do you add a value? Simple. Like so:
Code:
<select>
<option value="Acura">Acura</option>
</select>
Bookmarks