Hopefully a simple one to replicate (assuming it's not my setup...)
I have the following in a PHP script:
echo('$userID: ' . var_dump($userID) . '<br>');
echo('$hashValidate: ' . var_dump($hashValidate) . '<br>');
The output is showing as:
bool(false) $userID:
bool(false) $hashValidate:
Shouldn't it be this way around though?
$userID: bool(false)
$hashValidate: bool(false)