Try changing
$_GET[‘token’];
to $_REQUEST[‘token’];
because $_GET[‘token’] gets only the $_GET variables while $_REQUEST[‘token’]
gets $_GET as well as $_POST variables
Try changing
$_GET[‘token’];
to $_REQUEST[‘token’];
because $_GET[‘token’] gets only the $_GET variables while $_REQUEST[‘token’]
gets $_GET as well as $_POST variables