in reply to Pass variable values from HTML to CGI using "onclick"
poj#!perl # test.cgi use strict; use CGI qw /:standard/; print header,start_html('test'); print h3("Parameters"); for (param){ print "$_ = ".param($_)."<br/>" } print qq!<form> <input type="submit" name="action" value="Add"/> <input type="submit" name="action" value="Edit"/> <input type="submit" name="action" value="Delete"/> <input type="hidden" name="hide" value="123"/> </form>!; print end_html;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Pass variable values from HTML to CGI using "onclick"
by newtoperl101 (Novice) on Jul 05, 2013 at 21:29 UTC | |
by poj (Abbot) on Jul 05, 2013 at 21:36 UTC | |
by newtoperl101 (Novice) on Jul 05, 2013 at 21:48 UTC |