Hi All,
I'm trying to pass a variable from a form to a perl script. It produces the error:-
"CGI Error
The specified CGI application misbehaved by not returning a complete set of HTTP headers." when run it (call it from the click of a submit button on an html form) but I don't get it - in my limited experience this is normally a syntax error but I'm blowed if I can see what's wrong here!
#!/usr/bin/perl
use CGI qw(:standard);
my $button_value = param('name');
many thanks in advance
Sarah