I realize this has been asked a few times but I can't find a solution that works for me.
Note: my webhost does NOT support APC.
Here's what I currently have working:
I have an HTML form with a text box to enter some text, and a button to select a file to upload. Once a button with a 'submit' type is clicked the text and file are POSTED to a PHP script which uploads the file and enters some information into a database.
All of the solutions I'm finding seem to be overkill. All I really need is the HTML form to display a progress bar once the file starts getting uploaded via the PHP script. Also, I need everything else in the script (database entries, etc) to continue to function normally.
Is there something simple I can add to my code to achieve this?
Thanks!