Posted by Harlan Messinger on 02/14/07 16:52
Leon wrote:
> Hi Chaps,
>
> I have been looking around the internet and I really can't see what I'm
> doing wrong here !
>
> This code works in firefox, but not internet explorer.
>
> Any suggestions please? Internet Explorer just doesnt update the action
> of the form so when you hit the button - it seemingly just refrehes the
> page!
>
> <form name="actions" action="" method="post">
> <select name="action" class="formBox">
> <option value="null" onclick="this.form.action.value='';">Select Action
> From List
> <option value="resendActEmail"
> onclick="this.form.action.value='./admin_process.php?a=resend';">Re-Send
> Activation Email
> <option value="deletaccount"
> onclick="this.form.action.value='./admin_process.php?a=delete';">Delete
> This Account
> </select>
> <input class="formBox" type="submit" name="submit" value="Go">
> </form>
Wouldn't it be easier and clearer for your users if you skipped the form
and just had a link for each action?
[Back to original message]
|