Kim,

It appears to be the header issue I mentioned before. Before

        print <<EndHTML;

You should print the text/html header.

        print "Content-type: text/html\n\n";
        print <<EndHTML;

or

        use CGI;
        $q = new CGI;
        print $q->header;
        print <<EndHTML;
        # etc.


-----
Scot Robnett
inSite Internet Solutions
[EMAIL PROTECTED]
-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to