Hello,
I'm trying to pass a cookie value as a string. IE:
$cookie_string = "$params->{username}|$params->{password}|$time|$time";
$cookie =
$cgi->cookie(-name=>'cookie_name',-value="$cookie_string",-expires=>'+1y');
But this is the result I get:
test22%7C123456%7C1122932023%7C1122932023
I'
Hi Wiggins,
Nope, that's all news to me! Thanks for the help, I'll
look into it.
Denzil
--- Wiggins d'Anconia <[EMAIL PROTECTED]> wrote:
> Denzil Kruse wrote:
>
> Have you read:
>
>
http://search.cpan.org/src/GAAS/libwww-perl-5.803/README.SSL
>
> And do you have an appropriate SSL interface
I am only doing CGI stuff. Does Apache2 give me anything besides being the
latest greatest? I ask because I tend to experiment with other CGI languages
and they sometimes do not have Apache2 implementations.
Robert
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [
Denzil Kruse wrote:
> Hi all,
>
> I'm trying send an https post:
>
> my $url = "https://some.secure.server/secure.dll";;
>
> my $ua = LWP::UserAgent->new;
>
> # assemble the request
> #
> my $request = HTTP::Request->new(POST => "$url");
> $request->content_type('application/x-www-form-urlencod
Hi all,
I'm trying send an https post:
my $url = "https://some.secure.server/secure.dll";;
my $ua = LWP::UserAgent->new;
# assemble the request
#
my $request = HTTP::Request->new(POST => "$url");
$request->content_type('application/x-www-form-urlencoded');
$request->content($content);
# send t