<form action="?login" method="POST">
<button>Login with Google</button>
</form>
我已经看到表单操作的许多不同操作通常必须指向一个 php 文件 ro ...但是 ?login 是什么意思
更多信息:这是来自 openid 库,单击按钮后会转到 google 允许页面!我们登录完成后,按钮将不会显示!这是什么意思 ?
回答后我知道 ?login 做了什么,但为什么登录完成后按钮不显示???
完整代码:
<?php
require 'openid.php';
try {
# Change 'localhost' to your domain name.
$openid = new LightOpenID('localhost');
if(!$openid->mode) {
if(isset($_GET['login'])) {
$openid->identity = 'https://www.google.com/accounts/o8/id';
header('Location: ' . $openid->authUrl());
}
?>
<form action="?login" method="post">
<button>Login with Google</button>
</form>
<?php
} elseif($openid->mode == 'cancel') {
echo 'User has canceled authentication!';
} else {
echo 'User ' . ($openid->validate() ? $openid->identity . ' has ' : 'has not ') . logged in.';
}
} catch(ErrorException $e) {
echo $e->getMessage();
}