Re: [Perl-unix-users] More Cookie Issues

2005-11-04 Thread Bill Platt
Bill, Your assistance was useful. The variables actually included: $Cookie_html = "Set-Cookie: latc_affid='top|$referer|$requested_uri|2005-11-4'; expires='Mon Nov 5 04:05:38 2007'; path=/; domain=.linksandtraffic.com; 0\n"; Using your example, I found two things. 1. I seem to have to use

Re: [Perl-unix-users] More Cookie Issues

2005-11-04 Thread $Bill Luebkert
Bill Platt wrote: > I have set up the following code for the purpose of > putting a cookie on my site: > > $Cookie_html = "Set-Cookie: latc_affid='$cookie_data'; > expires='$CookieExpires'; path=$CookiePath; domain=$CookieDomain; > $CookieSecure\n"; What's in those vrbls ? > print "Content-type

[Perl-unix-users] More Cookie Issues

2005-11-04 Thread Bill Platt
I have set up the following code for the purpose of putting a cookie on my site: $Cookie_html = "Set-Cookie: latc_affid='$cookie_data'; expires='$CookieExpires'; path=$CookiePath; domain=$CookieDomain; $CookieSecure\n"; print "Content-type: text/html\n\n$Cookie_html\n\n"; This does not wor