Hello,
>
>    print "Content-type: text/html\n\n";
>   print "<HTML><HEAD>";
>    print "<META HTTP-EQUIV=\"Set-Cookie\" CONTENT=\"visirotid=$visitorid;
> path=/
> ; domain=www.trichurgateway.com;\">";
>  print "</HEAD><BODY></BODY></HTML>\n";
>
> Immediately after this, Iam trying the recirect.
>
>     print "Content-type: text/html "."\n\n";
>     print "Location:
> /scripts/visitorinfo.cgi?pageid=mailhdr&amp;lang=EN\n\n";
>     exit 0;
>

You cannot send a second http header.

Do a

     print "Content-type: text/html\n";
        print "Set-Cookie: visirotid=$visitorid;...  \n" ;
     print "Location:
/scripts/visitorinfo.cgi?pageid=mailhdr&amp;lang=EN\n\n";

Gerald


-------------------------------------------------------------
Gerald Richter    ecos electronic communication services gmbh
Internetconnect * Webserver/-design/-datenbanken * Consulting

Post:       Tulpenstrasse 5         D-55276 Dienheim b. Mainz
E-Mail:     [EMAIL PROTECTED]         Voice:    +49 6133 925151
WWW:        http://www.ecos.de      Fax:      +49 6133 925152
-------------------------------------------------------------


Reply via email to