localhost/blink/activate.php?email?=iamuser@localhost&activate_code=36486d71147a97037515616677c7359b
それが私のアクティベーションリンクです。ただし、PHPはそれを認識していません。
if (isset($_GET['email'], $_GET['activate_code']) === true){
echo 'Works!';
}
PHP ページに出力がありません。リンクをクリックした後、エコーが表示されません。IFステートメントの何が間違っていますか?
更新:これが私が割り当てた方法です。
email($regi_data['email'], 'Activate your account',"Hey " .$regi_data['username']. ",\n\nYou need to activate your account.\n\nPlease click on the link below:\n http://localhost/blink/activate.php?email=". $regi_data['email'] . "&activate_code=" . $regi_data['activate_code'] . "\n\n-Blink");