I am trying to get the referer with php
using:
var_dump($_SERVER["HTTP_REFERER"]);
But it returns NULL
.
I put this code in sample.php
, This file linked in index.php
and when I click on link, it shows sample.php
file but referer returns NULL
. What am I missing?
What I'm trying to do is, getting previous file name, I mean when I go to sample.php
from a page, I want to get previous page file name.
I've worked with referer
before, however I have not seen this result before. Any ideas?