I have password reset url with parameters(http://localhost/folder1/folder2/inc_resetPassword.php?token=1&tokenid=1) in mail i am unable to get url parameters...
I attempted to use print_r($_GET) but it returns an empty array.
I have password reset url with parameters(http://localhost/folder1/folder2/inc_resetPassword.php?token=1&tokenid=1) in mail i am unable to get url parameters...
I attempted to use print_r($_GET) but it returns an empty array.
Your print_r($_GET) is not querying / getting anything. You need to specify what $_GET is looking for.
In your case, your URL has the token and tokenid parameters. So you would need to $_GET['token']; and $_GET['tokenid'];