Another concern with using insert/update is partial applications.
Quote:
Well, you can do one of two things:
[1] Each step, put an <input type="hidden" ... /> field in each <form></form> block containing the file ID.
[2] Put the file ID right into the address bar <form action="filename.php?file=$fileID ... > ... </form>.
Then, use that to manipulate the right entry in the database.
Nick
|
1) Its quite a lengthy form, and that would be way too much code to use hidden inputs.
2) By file ID, you mean the session id associated with that entry? The problem with that is that you could potentially manipulate every entry in the database. If that's not what you meant, then I don't have a clue.. please clarify 
|