hi, is it possible to execute that header-command after a specific peroid of time? like in the http-equiv="refresh" header?
thanks
No, that's what http-equiv is for :-)
1) why would you wanna do that ?
2) you could build a sleep() function before it which would wait for the function to execute for the detemined number of seconds.
1) to auto-refresh, or for a download page; "if the download doesn't start in x seconds..."
2) That wouldn't work, because you can only send headers before you print any html. This way the page would stay empty for X seconds and then redirect.
the http-equiv header is well suited for that.