--> $_REQUEST['page'] is equal to 25.
$_SESSION['previous_page'] = $_REQUEST['page']; //RETURNS BLANK/NULL
$_SESSION['previous_page'] = $_REQUEST['page'] + 0; //RETURNS 0
$_SESSION['previous_page'] = "25"; //RETURNS 25
Why won't $_SESSION store an int or a string representing an int but store text?