http://qs321.pair.com?node_id=9980


in reply to Why do some browsers show none of my output?

What is showing up, then? Are you sure you're sending back the correct HTTP header? Make sure you're sending back a Content-Type of text/html:
use CGI qw/:standard/; print header;
Or, if you're using mod_perl:
$r->content_type("text/html"); $r->send_http_header;