Showing posts with label PHP Go back to Previous Page. Show all posts
Showing posts with label PHP Go back to Previous Page. Show all posts

Monday, 24 September 2018

PHP redirect – go back to previous page

To go back to the previous page the superglobal variable $_SERVER can be used.
$_SERVER['HTTP_REFERER'] has the link to the previous page.
So to redirect simply :
1
2
3
4
5
6
7
8
#Method to go to previous page
function goback()
{
    header("Location: {$_SERVER['HTTP_REFERER']}");
    exit;
}
 
goback();

Monday, 13 July 2015

PHP redirect – go back to previous page

To go back to the previous page the superglobal variable $_SERVER can be used.
$_SERVER['HTTP_REFERER'] has the link to the previous page.
So to redirect simply :

#Method to go to previous page


function goback(){
    header("Location: {$_SERVER['HTTP_REFERER']}");
    exit;
}
goback();