Help for this page

Select Code to Download


  1. or download this
    my $tree = XMLin( foo.xml );
    print $q->redirect('http://foo/cgi-bin/bar.cgi?TREE='.$tree);
    
  2. or download this
    my $p = new CGI;
    my %in = map { $_ => $p->param($_) } $p->param;
    print header;
    print Dumper(%in);
    
  3. or download this
    my $treeparam = param('TREE');
    print Dumper($treeparam);