Testadmin
Testadmin

Reputation: 2898

How do I create a file upload progress bar in PHP?

In my PHP web site, i want to create a file uploading progress bar. I have used many code, but it's not working. My PHP version is 5.2.8 and sever is in Linux. Please give me a solution.

Upvotes: 0

Views: 178

Answers (3)

Dagg Nabbit
Dagg Nabbit

Reputation: 76736

use APC_UPLOAD_PROGRESS from APC.

http://php.net/manual/en/ref.apc.php

The tutorial Kalium posted shows how to use it.

Upvotes: 1

ksol
ksol

Reputation: 144

Solution: learn how HTML, Internet communication, and server-side processing work. Understand that your problem is not related to PHP. HAND.

Upvotes: 1

Kalium
Kalium

Reputation: 4682

Here, have a tutorial on the subject.

Upvotes: 1

Related Questions