Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: problem with redirecting to a cgi page

by SankoR (Prior)
on Jul 03, 2008 at 01:14 UTC ( [id://695264]=note: print w/replies, xml ) Need Help??


in reply to problem with redirecting to a cgi page

[update]As grep said,[/update] you're sending a full set of headers (and even content) before your code gets to send the redirect header. You need to have things in this order:
#!/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
    Thanks a lot Monks

    That made the trick

    Srinivas.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://695264]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (1)
As of 2024-04-25 00:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found