Yvonne Rojas wrote:
Is there a way to do this without having a submit button using maybe javascript?
You can't get around loading (or reloading) a page because you're sending the query results from the server. You CAN do this without a submit button though, and, you're right, the key is javascript.
Your select statement should look something like this:
<input type="select" onchange="formname.submit()">
It might be document.formname.submit() (I can never remember), but that's the idea, anyway. Of course in your form tag, you'll need to have name="formname", where formname is whatever you want to name your form.
HTH,
Beth