> The action you want is only available using JavaScript.
>
> You need to submit the form without a submit button.
> The "<select>" tag has the "OnChange" event which is scriptable. You
> can use the JavaScript statement "this.form.submit();" associated
> with the "OnChange" event.
>
> <form>... <select name="x" OnChange="this.form.submit();"><option...>...
> </select>...</form>

It's a good idea to include the submit button as well, for browers that
don't support javascript, or for those who turn it off.  That way your site
will always work properly.





-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to