$_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(); |
0 comments:
Post a Comment