Advertisement
Guest User

Untitled

a guest
Jul 5th, 2010
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1.  
  2. $openid = new LightOpenID;
  3.        
  4. if($openid->validate()) {
  5.     $content = "User ". $_GET['openid_identity'] ." has logged in.";
  6.     $openid->required = array('contact/email');
  7.     $foo = $openid->getAttributes();
  8. } else {
  9.     $content = "User not logged in.";
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement