html - Select a file to upload on one page and upload file on another page -
i have multi-step wizard. let user select file on 1 page (step #2, example of 6-step process), want files uploaded on last page (confirmation page, step #6).
is possible prompt , capture local file system path on 1 page, , upload file later.
is single-page-like wizard option accommodate workflow?
no, there not way store local path , retrieve specified file later, or pass uploaded file data page page (like can other post data). security reasons, remote sites cannot access files on client's machine via browser without direct user input.
you need handle upload @ time happens. alternately, use javascript/ajax hide fact not performing new page loads while user progresses through steps.
Comments
Post a Comment