This is a combination PHP, HTML and Java question, but here goes:
I have the following button, that I don't want to follow the form action...this works fine...
<input type="button" value="Delete User!" OnClick="window.location='deluser.php'">
but it is not passing any variables....the variable that I would like to pass is (using php):
<input type="hidden" name="selectbox" value="<? print "$selectbox"; ?>">
any ideas?