in reply to Re: Script not returning header
in thread Script not returning header

"you are also using a semi-colon instead of a comma at the end of print header "

so?? do you think that's the problem?

using semi-colon means that it's the end of the statement, while a comma means a list, what you are actually doing, is using a list with a single print statement.. and this is not the problem here.

This:
print header, start_html('A Simple Example');
basically does the same thing as :
print header; print start_html('A Simple Example');

He who asks will be a fool for five minutes, but he who doesn't ask will remain a fool for life.

Chady | http://chady.net/