in reply to Re^3: Sessions problems
in thread Sessions problems
Just wondering should as in the creating the session, $name here be defined as my $name ->new CGI() or just my $name also the value that i passed into the session was$name = $session->param($username); printf "<input type=\"text\" name=\$username\" value=\"%s\" />", $name +;
so in retrieving the cookie am i right to put $username into the "param" field in the line $name = $session->param($username); and into the name field in the line$name = $query->param($username); $session->param($username, $name);
Thanks againprintf "<input type=\"text\" name=\$username\" value=\"%s\" />", $name +;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Sessions problems
by f00li5h (Chaplain) on Dec 13, 2006 at 20:57 UTC |