image upload, resize THEN submit form
Posted on
16th Feb 2014 07:03 pm by
admin
Ok so I have a form that requires the user to upload an image, and then do something with that image (using some ajax scripts), then fill out the rest of the form and submit. I have the upload script pretty much working, my problem is that I need to store the uploaded images temporarily just in case the user decides not to submit the form
Here's the process I would need:
1) Form loads
Did you know?Explore Trending and Topic pages for more stories like this.
2) User fills out form
3) User uploads image (php + ajax)
a) image is resized to a large and thumbnail image using imagecopyresampled()
b) fullsize and thumbnail images should be stored in a temporary location ??
4) Image is dynamically displayed in the form after upload and resize (using some jQuery/ajax magic)
5) User performs some action to the uploaded image (using jQuery/ajax)
At this point, the user can submit the completed form, at which time a php script will will move the temporary (resized) fullsize and thumbnail images from the temp location to a permanent location on the server, and if the file saving succeeds, then it will write the form data to a MySQL server.
BUT if the user doesn't submit the form, I need the temporary files to be deleted.
Normally this would be handled by the temporary files being stored by the $_FILES array, but since I have to resize them after upload, the $_FILES["upload"]["tmp_name"] is automatically deleted after I resize it.
Please suggest an alternative solution. As I said, the upload script is done. It can upload and resize the images, but I need a way to store the images temporarily until the form is submitted.
No comments posted yet
Your Answer:
Login to answer
163
37
Other forums
Do not allow posting of whitespace
Currently the script below works if the user does not type a name/message, but if i create a whitesp
Form errors in an array
I'm processing a form and putting the errors in an array. empty($errors) doesn't seem to do the tric
BackButton Behaviour in AJAX
I have an ASPX Page AJAX Enabled!The page has a gridView and a DDL for filtering on it. The Gridview
Hotlinking Picasa as the image folder of a website
Hi there PHP freaks, I would like to create a private album in Picasa to use it as the image folder
Read from a text file after a specific word
Hi all.
I have a text file that looks like the one below.
I know how to open the text fi
Production of mango in processing industry
Hi,
We have one scenario ,company is in process industry,they are manufacturing MANGO pul
PHP error on MySQL insert
I'm sure it's the simplest of issues, but I can't recall why this isn't working.
Code: [Selec
HTML Email rec'd as Source Code
The code does create and send the email successfully. However, the message shows as html code and n
Cannot Connect to Database
I am writing an application to do annual reviews. I cannot get my script to work. Whenever it runs I
Will an XHTML DOCTYPE interfere with my PHP if I'm not experienced enough?
I've read this article here: http://friendlybit.com/html/why-xhtml-is-a-bad-idea/
In a nutshe