I'm trying to write to a file from a 5 choice radio form and I keep getting
this error
Undefined subroutine &main::param called at pollresults_rg.pl line 5.
What does that mean?

My code is:
#!/usr/bin/perl -w

use CGI::Carp qw(fatalsToBrowser);

@picks = param("radiobutton");

#write to a file

open(RESULTS, ">>results.txt");
     print RESULTS "@picks";
     close RESULTS;

Thanks
-Naika
 http://www.naikaonline.com


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to