-2

I have been looking for AGES trying to find a progress bar i can easily integrate without having to downloads libraries like APC etc.

Does anyone know a really simple PHP progress bar i can integrate with ease into my current code?

Massive Thanks!!!

DOK
  • 32,337
  • 7
  • 60
  • 92
HarryBeasant
  • 490
  • 1
  • 9
  • 21

4 Answers4

2

First of all, You need to search inside JS plug-ins not PHP. That's why you did't find anything: there is no "progress-bar for PHP".

Instead, there are bunch of free jQuery (especially Ajax based) upload plugins. Here are some of them

http://www.uploadify.com/

http://valums.com/ajax-upload/

http://blueimp.github.com/jQuery-File-Upload/

Tural Ali
  • 22,202
  • 18
  • 80
  • 129
1

If you want to have a true (server side) progress bar, you will have to install the libraries you mentioned.

You can however fake it, if the client knows how large the file is and how much it has transferred already.

Plupload is one with multiple engines (HTML5, Flash, Silverlight etc.) and is being integrated via jquery

konsolenfreddy
  • 9,551
  • 1
  • 25
  • 36
0

This would be one http://pixeline.be/experiments/jqUploader/test.php

Mike
  • 3,017
  • 1
  • 34
  • 47
0

Check this out:

http://valums.com/ajax-upload/

It doesn't require APC or any other external PHP libraries and you can get file progress feedback on a shared host.

Korhan Ozturk
  • 11,148
  • 6
  • 36
  • 49