I think this is ok but I want to make sure I'm not missing some obvious thing.

If I do some headers with print and then do a CGI header(), that will work ok right?

IE:

use CGI qw(:standard);
print "Set-Cookie: $c\n";
print header();
...

OR

use CGI qw(:standard);
print "Set-Cookie: $c\n";
print header('image/gif');
...

Assuming $c is valid cookie dough...
Both ways will set a cookie if the browser allows it and then display the 
image or html the rest of the script does, right?

Thanks

Dan

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to