Hi,
I need to resize an uploaded image. The class that resizes needs to get the location of the image to be worked with. It returns the image in a variable.
However, when I try to get the path to the image, I get from $_FILES['profile_upload']['tmp_name']
the following: C:\xampp\tmp\php1C5.tmp
I don't get the actual file, even though the tmp
folder contains it!
How can I get the actual filename? Another question - for how long are the files stored in tmp
, and when do they get deleted?
By the way, does the Zend Framework have a good image manipulation interface?