Hi,
The problem I have is that PHP doesn't inherently support a progress bar. While normally this is fine (uploading text files of 100k or less), I am providing users with the ability to upload large files. This large file size is in the order of 30Mb.
Now, getting over the familiar hurdles of setting all the timeouts and max filessizes in PHP, apache and mySQL is something I'm not interested in looking at, at the moment.
I'm simply after advice on how to read a file using standard I/O, putting that data into a database (Using datatype BLOB?) and each 'line' of the file (or reasonable increment) output the current progress.
Again, I'm not interested in the actual processing of the progress, just to know if this is feasable.
Thankyou in advance...