Yes, it is possible and very easy if you use the CGI.pm module (available from CPAN). This is the answer to many questions which arise when writing CGI scripts, so you might want to check it out.
Briefly, two cookies can be set by following this example(see the CGI.pm documentation for more details):
# at the start of your script
use CGI;
my $query = CGI::new();
# then later
my $cookie1 = $query->cookie(-name=>'Name',
-value=>$user,);
my $cookie2 = $query->cookie(-name=>'Passwd',
-value=>$pass);
print $query->header(-cookie=>[$cookie1,$cookie2]);
To get cookies back from a user, simply say:
$user = $query->cookie('Name');
$pass = $query->cookie('Passwd');
As you seem to want to save the user's name and password to their machine, you might want to rethink your session management. It is a bad thing to do it as you are because another user on the same computer can easily read someone else's cookies, find out their password, and then pretend to be them.
In reply to Re: Cookies
by quidity
in thread Cookies
by Kiko
-
Are you posting in the right place? Check out Where do I post X? to know for sure.
-
Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
<code> <a> <b> <big>
<blockquote> <br /> <dd>
<dl> <dt> <em> <font>
<h1> <h2> <h3> <h4>
<h5> <h6> <hr /> <i>
<li> <nbsp> <ol> <p>
<small> <strike> <strong>
<sub> <sup> <table>
<td> <th> <tr> <tt>
<u> <ul>
-
Snippets of code should be wrapped in
<code> tags not
<pre> tags. In fact, <pre>
tags should generally be avoided. If they must
be used, extreme care should be
taken to ensure that their contents do not
have long lines (<70 chars), in order to prevent
horizontal scrolling (and possible janitor
intervention).
-
Want more info? How to link or
or How to display code and escape characters
are good places to start.