I am creating a form which processes a perl script and then I want to redirect it to another page.
I have the following code:
#!opt/bin/perl
use CGI qwstandard);
$q=new CGI;
....
....
....
....
....
print "Thank you for your submission";
print $q->redirect('
But this doesnt seem to work. Could you point out why?
I have the following code:
#!opt/bin/perl
use CGI qwstandard);
$q=new CGI;
....
....
....
....
....
print "Thank you for your submission";
print $q->redirect('
But this doesnt seem to work. Could you point out why?