Hi,
I'm currently in the early stages of designing a member login section for my website. Each member would have the usual username and password login and then the user tracked with a session.
Once logged in, members will be accessing data from the database a lot, pretty much on every page they click on.
Can anyone advise on what is the most efficent way of connecting to mysql for each of my users, even when lots of them are logged in at the same time?
Would it best to just use 1 connection to the database and use this with each member or create a different connection for each member? And also what about persistant connections?
Any help would be most appricated.
Andy