Jump to content

[SOLVED] Redirect to current page?


galvin

Recommended Posts

I want to be able to sometimes redirect users to the CURRENT page, whatever page that may be, rather than actually redirect them to another page.  I have this function below that works fine for truly redirecting, but how can I adjust this code to allow "redirecting" to the CURRENT page?...

 

	function redirect_to($location = NULL ) {
	if($location != NULL) {
		header("Location: {$location}");
		exit;
	}
}

Link to comment
https://forums.phpfreaks.com/topic/158061-solved-redirect-to-current-page/
Share on other sites

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.