OK, so here's my situation. I have a web applicaiton that you log into
and it writes a tiny little userID cookie to the browser. This all works
beautifully in IE. However, in Mozilla and Safari it's a different story.
In Sfari, the cookie is not written at all. In Mozilla the writing of
the cookie interferes with the html header and makes the next page to come
up appear as plain text.
Can anyone give me some advice to stablize this app?
I am currently using the followin code to write the cookie:
my $cookie = "Set-Cookie: " .
"$COOKIENAME=$userID; " .
"domain=.breltech.com; " .
"expires=+1d";
print $cookie;
.....
print "Content-type: text/html\n\n";
suggestions?
--Alex
_______________________________________________
Boston-pm mailing list
[EMAIL PROTECTED]
http://mail.pm.org/mailman/listinfo/boston-pm