[PHP] single signon Solution php and .net
Hi, me and my fellow developer have built two applications that need to authenticate users using LDAP, we have successfully accomplished it, but the problem is his application is in .net and mine is in php, my php app needs to call secure pages of .net and vice versa, now when the user is logged onto let say my php app he is logged and his session is created and when I redirect him to .net app he again sees a login form because the session isnt created in .net app. I need some single sign on solution I found lots of APIs and libraries for java but have no idea what can I use for php and .net, kindly experience programmers guide me. Thankyou -- Murtaza Chang http://flickr.com/photos/blackstallion/
[PHP] single sign on Solution php and .net
Hi, me and my fellow developer have built two applications that need to authenticate users using LDAP, we have successfully accomplished it, but the problem is his application is in .net and mine is in php, my php app needs to call secure pages of .net and vice versa, now when the user is logged onto let say my php app he is logged and his session is created and when I redirect him to .net app he again sees a login form because the session isnt created in .net app. I need some single sign on solution I found lots of APIs and libraries for java but have no idea what can I use for php and .net, kindly experience programmers guide me. Thankyou -- Murtaza Chang http://flickr.com/photos/blackstallion/
[PHP] Information Portal
Hi Everyone, I am developing an Information Portal for my university, and I am looking a good solid framework. can you provide me with links, currently I am a bit confused and overwhelmed with lots of great stuff on net like drupal and Ruby on Rails If you could share your experience[if any on similar projects] I would be really thankful. -- Murtaza Chang http://flickr.com/photos/blackstallion/
[PHP] Automatic email sending
Hi everyone, my website need to automatically send an email to people when thier account is about to expire, but iam not sure how to do it. In other words its easy to put a check if an account is about to expire and send automatic email when admin logs in to system, but how is it possible to do it in background. -- Murtaza Chang http://dirtinme.blogspot.com/ A Place to throw personal trash http://milddreamerz.blogspot.com For Photoshopers And Digital Art Enthusiasts -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] Forms Validation library
Hi I just wanted to know if there's a generalised library available for Forms validation in php? -- Murtaza Chang
[PHP] Date time Comparison
Hi everyone, this is the function I have written for comparing a date time please tell me if my logic is correct ? and if there's a better alternative please let me know of that as well. // This function will return 1 if supplied date is expired function is_expire($expiry_date){ $current_date=date('YmdHis'); $year=substr($expiry_date,0,4); $month=substr($expiry_date,5,2); $day=substr($expiry_date,8,2); $hour=substr($expiry_date,11,2); $min=substr($expiry_date,14,2); $sec=substr($expiry_date,17,2); $formated_expiry_date=$year.$month.$day.$hour.$min.$sec; if ($current_date>=$formated_expiry_date) return 1; else return 0; } -- Murtaza Chang