I’m looking for an idea of best practices here. I have a web based application that has a number of hooks into other systems. Let’s say 5, and each of these 5 systems has a number of flags to determine different settings the user has selected in said systems, lets say 5 settings per system (so 5*5).
I am storing the status of these settings in the user sesion variables and was wondering is that a sufficient way of doing it?
I’m learning php as I go along so not sure about any pitfalls that this could run me into!
There’s no size limit on session (apart from obvious memory and disk quota limit). Just keep it sane and don’t put your entire database in it.