|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
I don't know what module to use to set cookies for Netscape6? Is there a module for this actually? If it is HTTP::COOKIE or CGI::COOKIE can I see the syntax on how to set cookies for netscape?
Jonathan Donaghe |
|
#2
|
|||
|
|||
|
There is nothing special about Netscape 6. You set cookies for it, as you would for any other browser. Using the CGI module you can do:
use CGI; my $cgi = new CGI; my $sid_cookie = $cgi->cookie(-name => "sid", -value => 1); print $cgi->header(-cookies => $sid_cookie); - Amir |
![]() |
| Viewing: Dev Shed Forums > Programming Languages > Perl Programming > How can I set cookies in Netscape6? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|