in reply to problem with redirecting to a cgi page
#!/usr/bin/perl use CGI; my $cgi = new CGI; if ($cgi->param('smbt')) { &creat_cooke(); # sic exit print $cgi->redirect('http://example.com/path/Welcome.cgi'); } print $cgi->header(); # [...]
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: problem with redirecting to a cgi page
by srinivas_rocks (Sexton) on Jul 03, 2008 at 19:57 UTC |