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:basically does the same thing as :print header, start_html('A Simple Example');
print header; print start_html('A Simple Example');
|
|---|