How to delay a header redirect with PHP

Sometimes you need to show some page content before redirecting a page, like a successful login message, etc. Here’s an easy way to delay a header redirect with PHP without using a Meta tag to refresh the page.
header("Refresh: 1; URL=http://www.studiosedition.com");

Comments Closed

Comments are closed.