Forum Moderators: coopster
When people update a record, the site stays on the same page. How do I get the $ID variable to stay with it without using sessions? I tried using a hidden field, but it didn't work.
To carry a variable from one request to the next you have a few options including sessions, cookies, hidden form fields and URL query string. It would seem to me that they could easily bypass your login if you aren't using a session though. Especially if you are allowing them to perform updates on certain areas depending on them telling you who they are. What stops them from altering that ID and changing somebody else's information? Seems to me there are some integrity implications here.