Re: CGI output to null?



Gunnar Hjalmarsson wrote:

Is there a way I can satisfy the script's need to reply, but send the information to Null, or whatever? Help?

Not a Perl question (apart from the use of 'print', which I'm sure you can handle).

print "Content-Type: text/plain\n\n";


That results in blank page, doesn't it?

I think it's this the OP is after:

print "Status: 204 No Content\n\n";

This also results in a blank page.

Meh, I've stopped fighting it - I've gone back to letting the form return an HTML response.

Thanks though.

Thom
.