Contributed by psmail
on Jun 29, 2001 at 19:22 UTC
Q&A
> CGI programming
Description: I am using CGI_Lite and I want to set a cookie and redirect to a url. I don't want to use CGI.pm which has a redirect method. Is there a way to redirect with setting a cookie and without using CGI.pm?
Thanks Answer: how do I set a cookie and redirect contributed by kwaping Here's an example of how to do it using CGI's OO interface.
use CGI ();
my $cgi = CGI->new();
my $cookie = $cgi->cookie(-name => 'test', -value => '1');
print $cgi->redirect(-uri => 'http://www.perlmonks.org/', -cookie => $
+cookie);
| Answer: how do I set a cookie and redirect contributed by epoptai Just print the headers like so:
print "Set-Cookie: name=value; path=path; domain=domain; expires=expir
+es;\n";
print "Location: http://whatever.net\n\n";
| Answer: how do I set a cookie and redirect contributed by SmokeyB After you set your cookie, print out the following meta tag in the header of the file. It'll use the browser's refresh to direct you to a new page.
print qq~<meta http-equiv="refresh" content="0;URL=url.html">\n~;
|
Please (register and) log in if you wish to add an answer
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|