I'm not sure I follow but here you go:
1001100110010000111. 🙂
That being said, all I need to know is this. Say u have a form that consists of 3 form objects; a file upload field, an input field for the title and a an input field for description.
Now say a user comes along and uploads a picture, puts in a description and forgets the title. When they click submit they go to the form action page which checks to see if there is a title and description. If there is no title then it generates an error and says to use the back button to insert a title.
When they go back to the page, the description that they input earlier is still there so they put in a title and hit submit.
At this point the code chokes because the file upload field is now blank. With this configuration I would have to rely on hoping the client noticed that the upload field didnt retain their upload path info.
So how would I re-populate the image upload field?
I thought of using a session variable to store the path and then somehow trying to pass it thru when they click back but Im not sure how or if that is a good route to go.
Thanks for the help.