I am building an application where I have a big image. I can crop this image and using AJAX the cropped image is displayed below this big image. Cropping process is PHP based and takes 10 sec. I want the user to crop image one after the other without waiting for the process to finish. I believe this requires queuing the request. Anyone, how can I queue these requests and process them one after the other. After processing each request I need to display them.
Thanks for any help.