bigup401 has asked for the wisdom of the Perl Monks concerning the following question:
is there any way i can check if the submit button pressed or not using cgi
like
if # submit button press do the rest else #submit button not pressed don't do the rest
this is the html simple
<!DOCTYPE> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1 +" /> <title>Untitled Document</title> </head> <body> <p>firstname <input type="text" name="textfield" /> </p> <p> lastname <input type="text" name="textfield2" /> </p> <p> <input type="submit" name="Submit" value="Submit" /> </p> </body> </html>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: cgi check button
by marto (Cardinal) on Apr 24, 2015 at 10:07 UTC | |
|
Re: cgi check button
by jeffa (Bishop) on Apr 24, 2015 at 15:28 UTC | |
|
Re: cgi check button
by marinersk (Priest) on Apr 24, 2015 at 13:21 UTC | |
by bigup401 (Pilgrim) on Apr 24, 2015 at 13:33 UTC | |
by marinersk (Priest) on Apr 24, 2015 at 13:41 UTC | |
by thomas895 (Deacon) on Apr 26, 2015 at 23:40 UTC |