Layric
Layric

Reputation: 97

I want an AJAX file uploader like Gmail file upload with the progress bar in PHP

I'd like an AJAX file uploader like the one shown in Gmail when you're uploading a file (with the progress bar) written in PHP.

Anyone have any ideas?

Thanks.

Upvotes: 3

Views: 11505

Answers (4)

Koti
Koti

Reputation: 131

I tried AJAX Upload by Andrew Valums to upload multiple files. This works really great and easy to use.

Upvotes: 1

Dutchie432
Dutchie432

Reputation: 29160

Many other can be found on Google and on this page

Upvotes: 2

slandau
slandau

Reputation: 24052

You could dynamically update a JQuery Progress Bar plugin, and achieve the same look and feel.

<div id="progressbar"></div>
<script>
  $(document).ready(function() {
    $("#progressbar").progressbar({ value: 1 });
  });
</script>

Then all you need to do is reference that progress bar and set it's value based on your actual progress:

$( ".selector" ).progressbar( "option", "value", <YOURVALUE>);

Upvotes: 0

Related Questions