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!
I got my log in page all sorted out and working very well. Now, I want to make a profile page for the users. What I thought I should do is to put in $SESSION[''] all the fields of the users row from the db. And so I did. It's working very well but is it good?
I only use session to store data that I want to use across multiple pages or keep a record of for later if I need to.
Other wise I just use variables and display them where I need to on the one page.
Keeps over head down on the server of client side with passing big session variables around