i have this link:
http://localhost/login/activation.php?usermail=xxxxx@gmail.com?usercode=$P$Bs9FpyKdKVFdVXYJ6dZCfcZqzWHLlc/
but this validation return Bad request. Why?
function checkBd() {
if (empty($_GET['usermail']) || (empty($_GET['usercode']))) {
echo "Bad request<br/>";
return false;
}
thanks
are you missing the & characters? should it not look something like this
I guess its currently taking everything after ?usermail to be one parameter?