Help for this page

Select Code to Download


  1. or download this
    my $q = new CGI;
    my $action = $q->param("action") || "enter";
    
    ...
    my @allnames = $q->param;
    print "All vars => @allnames<BR>";
    print "Action is $action";
    
  2. or download this
    All vars => newitem qty
    Action is enter