in reply to cookie problem

I think you got a typo here:
print qq(Content-type: text/html\n");
What you really want is
print qq(Content-type: text/html\n);
without the trailing "

$|=$_='1g2i1u1l2i4e2n0k',map{print"\7",chop;select$,,$,,$,,$_/7}m{..}g

Replies are listed 'Best First'.
Re: Re: cookie problem
by perlknight (Pilgrim) on Apr 28, 2002 at 23:03 UTC
    Thanks, originally it wasn't there but after trying to get it to work, I must have made a type :-)