I am writing a small application that does the following:
- Allows user to download excel file
- Reads data from each column of an excel file and creates an image based on the data
Right now I upload files and call a script that goes through the file, creates images, creates a page (or db record) with each pic name, and then displays them on the screen. I would prefer that he notify of the use of this progress. I would like the PHP script to force the images to be called via ajax (I know how to do this), but in order to essentially return the value JSON, HTML, plain text, it doesn't really matter.
Is this doable? I'm using jQuery, so maybe there is a function in AJAX calls that I don't know about?
source share