views:

16

answers:

2

I see stackoverflow's login system and love the simplicity of clicking one button to log in using Google gmail account.

Is there something available for PHP? I know there's solutions out there for Django and others. But would like a PHP solution.

Thanks!

+3  A: 

you can use the PHP OpenID library. This should take care of most of it for you, and comes in PHP4 & 5 flavors.

GSto
thanks! will look at the package.
Scott
+3  A: 

What you are referring to is actually just OpenID.

Take a look at this post: http://devzone.zend.com/article/3581 or similar.

Nathan Taylor
thanks! seems not easy. wish someone would create an example script working...
Scott
@Scott It looks like the [PHP OpenID library](http://www.janrain.com/openid-enabled) that @GSto mentioned will simplify things for you.
Nathan Taylor