I have multiple web application some of use asp.NET and other Zend PHP and for .NET application i used aspnet membership framework, now i need to make single login for all my application so how can i do that? can PHP use the aspnet membership database? if yes how can i integrate the aspnet membership on php?
My primary requirements is single loging screen f开发者_如何学编程or all web application.
You might want to look at PEAR's Auth and LiveUser package and configure them to use your existing database.
An aspnet membership database is a regular SQL Server data base and you can access it with PHP.
look at the following links:
http://msdn.microsoft.com/en-us/library/cc793139(v=sql.90).aspx
http://php.net/manual/en/function.mssql-connect.php
精彩评论