Might help a bit to see the script or know what its supposed to print. "content type text/html" is the usual start of web page, which'd mean the script hasn't any typos or missing modules but whatever its supposed to do next doesn't return output. The browser (look at the source view) is correct for this output.<br><br>Next step is to stick a bunch of prints in there and see where you're failing.<br>if you do:<br><FONT FACE=monospace>my $debug = 10;</font><br>and then<br><FONT FACE=monospace><br>print "Just did foo\n" if $debug > 5;<br>print "attempting bar: val1: $val1, val2: $val2\n" if $debug > 7;<br></font><br>sort of debugging statements, you can leave them in as you get it to work and choose your level of debugging info to see for any particular run.<br><br>Good luck.<br><br>a