in reply to Form submit detection...

<form name="myform" action="lgoin.pl" method="post"> <input type="hidden" name="login" value="doit"> ... <input type="submit" value="Login">

you can now set the submit button value attribute as you wish..

cheers,

J

Replies are listed 'Best First'.
Re: Re: Form submit detection...
by kiat (Vicar) on Dec 12, 2003 at 02:56 UTC
    Thanks, edoc!

    Does it make a difference if I've more than one field?

      nope, not at all. A "hidden" input is posted to the server just like any other input (text, select, etc) it just doesn't get displayed in the web page.

      cheers,

      J