I have a pretty basic login page that queries a mysql database table for a username and password. If a record is found then it pulls other information from the database table and sets that info to php SESSIONS. Those sessions are used to give the user a personalized experience on the web site.
That part is easy, but now I want my index.php and login.php pages to be served up with SSL. Then once the user has authenticated I'll transfer them to a standard http web site.
My problem is whenever I set a SESSION value on an https web page, I can't access that value on the regular unencrypted web site. So how do web sites authenticate users via an https web page, while serving up the dynamic content on the rest of the site as [url]http://?[/url]