I am programming a page primarily in PHP and I was wondering if it would be better to grab a bunch of the non-sensitive info about a user from the database and put it into cookies for faster loading on future pages, or if I should have each page access the database several times?
The pages don't load particularly slowly, but there is a slight, noticeable delay for the sql query and PHP to populate the page. It could just be my server, but I would like to make sure my code is efficient before I worry about that.