views:

20

answers:

1

Hello,

I'm not sure if this can be made by protocol.

Let's say we want, on something.com login index page, to allow the user to fill in their application username and password and, once that is done, to have him/her redirected into application.something/clientApplicationPage/ to see is details.

Can I have some lights about what should I have into consideration in order to do something like this please?

Thanks in advance, MEM

+1  A: 

This can be achieved very easily with sessions. Since PHP uses a cookie to maintain the session state, make sure that you allow the session cookie to be set for all subdomains. After you have the userlogin to something.com just send out a simple header to have the browser redirect them to application.something.com the cookie will still be present in the application.something.com domain and the session data will pull up just fine

check the documentation about sessions: http://us.php.net/manual/en/session.configuration.php#ini.session.cookie-domain

Keep in mind that any javascript you write will have to conform to SOP and wont be able to access anything on the subdomains.

MANCHUCK