I am working on a php db site which uses sessions (not logons) for people to request files which would then emailed to the list owner for consideration.
I have some of the code written =] I was just trying to get a suggestion on how to go about this.
Do I use mysql and write the session along with the requested info so that the user can request until they hit submit. which would in turn delete the users info after the list has been emailed. (but how to get rid of sessions if the user just shuts their browser down or jumps to another page?).
Do I use a text file and write the array to a text files with the session name as the filename? (again, getting rid of sessions).
Or is there a better way to do this? Would cookies be better? I read on a php site, that cookies don't always work since browsers can shut down the placement of cookies (security?)
Or should I just go with logons/pwd's (so selected items could more easily be deleted) and keep track of it that way?
I am pretty new with Php, but am learning... =] Thanks for any help/info you can supply.