begin($openid); // Handle failure status return values. if (!$auth_request) { $error = "Authentication error."; include 'index.php'; exit(0); } $auth_request->addExtensionArg('sreg', 'optional', 'email'); // Redirect the user to the OpenID server for authentication. Store // the token for this authentication so we can verify the response. $redirect_url = $auth_request->redirectURL($trust_root, $process_url); header("Location: ".$redirect_url); ?>