Quantcast
Viewing latest article 12
Browse Latest Browse All 20

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();

The post PHP redirect – go back to previous page appeared first on BinaryTides.


Viewing latest article 12
Browse Latest Browse All 20

Trending Articles