Code: Select all
header("Refresh :5;");[text]The server encountered an unexpected condition which prevented it from fulfilling the request.
The script did not produce correct headers. It must at least print out a Content-Type header, like so:
Content-Type: text/html
The header the script produced was:
Refresh :5;[/text]
So I tried
Code: Select all
header("Content-Type: text/html;");
header("Refresh :5;");Any suggestions?