Jump to content

[SOLVED] Using PHP to redirect or refresh


wargolchaos

Recommended Posts

You can use the header such as this, it'll be easier in the long run..

//  refresh / redirect to an internal web page
header( 'refresh: 5; url='.$_SERVER['PHP_SELF'] );
echo '<h1>You will be re-directed in 5 seconds...</h1>';

Of course the '5' may become a '0' in case you don't want it to wait. Use ob_start() at the beginning of your code if you wish to use this later on in a page.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.