I'm writing a small app that does the following:
- Allows a user to upload an excel file
- Reads the data from each column of the excel file and creates an image based on the data
Right now I upload the files and call the script that cycles through the file, makes the images, create a page (or db entry) with each pic name, and then displays them on screen. I would PREFER to have it notify the use of it's progress though. I would like for the PHP script which makes the images to be called via ajax (I know how to do that), but for it to essentially return a value JSON,HTML, plain text, doesn't really matter.
Is this doable? I'm using JQuery, so maybe there is a feature in it's AJAX calls I don't know about?