I have two php files. one is register.php and the other is index.php.
When a user clicks a link and is brought to register.php, $_SERVER['HTTP_REFERER'] will record
index.php,and assign "index.php" to $_SESSION['get'];
So now I am sure that $_SESSION['get'] has "index.php".
But when the use...