tags:

views:

62

answers:

4
+2  Q: 

Uploading a file

Possible Duplicate:
How to implement file upload progress bar on web?

Hello

I have seen many webpages where the user is able to upload a file and he is given some sort of progress as visual feedback (horizontal bar, percentage etc).

My html form is

<form method="post" action="upload.php" enctype="multipart/form-data">
<p>Select file to upload: <input type="file" name="selected_file"></p>
<p><input type="submit" value="Upload the file"></p>
</form>

How can I provide the user with a feed during the upload?

Thanks

A: 

Have a look at very good:

UBER-UPLOADER 6.8.2

Sarfraz
+2  A: 

there are many javascript and flash scripts out there which provide such a option.

my favorite one is Plupload. it supports html5 as well as flash and many others to choose from

see the examples and documentation for more information

choise
+1  A: 

Use JavaSqript. For e.g. i suggest to see http://www.webmotionuk.co.uk/php-jquery-image-upload-and-crop/

Gedzis
A: 

for your purpose you can use uploadify. its a jquery upload plugin. the link to uploadify is http://www.uploadify.com/. the link to its demo page is http://www.uploadify.com/demo/.

its easy to use. and it have good documentation too. try this

Jaison Justus