in reply to Re: Re: Cookies created via CGI.pm and CGI::Cookie incorrectly made
in thread Cookies created via CGI.pm and CGI::Cookie incorrectly made

-
  • Comment on Re: Re: Re: Cookies created via CGI.pm and CGI::Cookie incorrectly made

Replies are listed 'Best First'.
Re: Re: Re: Re: Cookies created via CGI.pm and CGI::Cookie incorrectly made
by Anonymous Monk on Mar 18, 2003 at 20:50 UTC
    Oops - in that last code example I missed a line break. The corrected script:
    #!/usr/bin/perl print <<EOF; Set-cookie: CUSTOMER=WILE_E_COYOTE; path=/; expires=Wednesday, 09-Nov- +03 23:12:40 GMT Content-type:text/html <html><body> Here is some HTML blather. </body></html> EOF exit(0);
Re: Re: Re: Re: Cookies created via CGI.pm and CGI::Cookie incorrectly made
by Doc Technical (Initiate) on Mar 18, 2003 at 21:16 UTC
    -