Joel,
Without seeing the rest of your script, I'm guessing that you are sending
data to the browser before telling it what you are sending. In other
words, if you set $q = new CGI then you need to use print $q->header
before sending other data. For example,
use CGI;
my $q = new CGI;
print $q->header;
print "things for the user to see...";
Hope this helps,
William
- LWP // Any answers? Stout, Joel R
- William McKee
