I recently started developing in PHP and I'm pretty n00b.
Anyhow, I finally made a code that validates a user login and it worked nicely on the IIS installed on my PC.
I'm using $_SESSION to pass parameters between pages. Like I said it works perfectly on my PC.
After I've uploaded the code to my website (http://www.purelan.net, yes I know its a n00b site). The session isn't maintained after I leave the page where I logged in. It looks like $_SESSION isn't passed. Tracking the tmp dir where the session files are created I see that every time I move to another page , a new session file is created.
My big guess is that session_start() is making those files instead of resuming with the session that is succesfuly started, only I don't know why, and more over I've no idea why it works perfectly on my PC and not on my website.
I tried to search the forums for a topic like this and found some nice info, but not a soloution.
Please help PHP masters