in reply to Incomplete Output When Printing Hash

What a fun problem ;)

to me, the only things that stand out are

<html> <head> </head> <body> content here </body> </html>

browsers do try to guess what you meant, and usually do the right thing -- but in this case who knows?

I usually use CGI to generate this type of html, I find it much easier.

Replies are listed 'Best First'.
Re^2: Incomplete Output When Printing Hash
by Anonymous Monk on Aug 19, 2013 at 11:47 UTC
    The first thing to do (and something a lot of people fail to do) when debugging CGI is to get rid of HTML:
    print "Content-Type: text/plain\r\n\r\n";