Easy way to redirect a webpage to previous page in php
function redirectToPreviousPage() {
In this $_SERVER is a superglobal variable, in which HTTP_REFERER holds the address of the page which refered this page.
function redirectToPreviousPage() {
header("Location: {$_SERVER['HTTP_REFERER']}");
exit;
}
In this $_SERVER is a superglobal variable, in which HTTP_REFERER holds the address of the page which refered this page.
No comments:
Post a Comment