PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
If you can pass sessions in IE and not FF I would assume that your cookies are disabled in FF and PHP is configured to only use cookies and not URL propagation.
I believe use_trans_sid is the culprit and should be set to 1 not 0
Enabling cookie was the temporary solution.
I will store the session info in a database.
How do I accomplish the example below if I disable cookies?
example:
I have a 20 pages I need to pass the same user preferences\permissions\data across. I have been using sessions in IE and it works. I want to move to Firefox.
Note: The total of 15 to 20 preferences\permissions\data are stored in mysql DB and security is important.
I would prefer not to have to select the preferences\permissions\data from the database for each page.