Poti sa ne dai codul din test.cgi, mai ales partea unde se preiau
datele ? ( my @params = $cgi->param(); )

Ai si un exemplu mai jos :

  #!/usr/bin/perl       

      use strict;
      use CGI;
      my $cgi = new CGI;
      print
        $cgi->header() .
        $cgi->start_html( -title => 'Feedback Form',
                          -author => 'Author',
                          -style => 'stylecgi.css') .
        $cgi->h1('Feedback Form') . "\n";
      my @params = $cgi->param();

      foreach my $parameter (sort @params) {
        print "$parameter" . $cgi->param($parameter) . "<br>\n";
      }

      print $cgi->end_html . "\n";
      exit (0);

_______________________________________________
RLUG mailing list
[email protected]
http://lists.lug.ro/mailman/listinfo/rlug

Raspunde prin e-mail lui