- PHP upload progress Bar
- PHP upload progress Bar
Out of context: Reply #8
- Started
- Last post
- 9 Responses
- enobrev0
the magic of their preloader is essentially showing something while uploading (since http unfortunately has no way of giving any actual upload progress data)
if you look at the code on their upload page, thir submit button has these steps:
hide('mm_upload');
show('mm_uploading');
document.forms[0].submit(); return falseWhich tells it to hide the form, show the spinning gif, subit the data, and dont redirect yet. Once the file is uploaded php generates the next page and serves it to the browser, which performs the 'refresh' and shows you the file uplaod info.
So, all you need is what they have in the code on the form page.
good luck.