I would like to validate the file extensions, file size, dimensions etc of the file being uploaded using a HTML form before actually storing them on the filesystem.
The reason being, I'm also creating a row in a shop table, and the image is a thumbnail of the item.
I need to store the image on the filesystem with a specific name (i.e. the ID of the row in the database) so I can reference the image later and show it against the item in the shop. The problem is that do_upload will save the file before I know what the ID is of the item row, because I can't create the row before I check if the file is valid. Otherwise I will need to do this:
Create item row
do upload -> if upload failed -> delete row
-> show errors
Or:
Do upload
if upload failed -> show errors
if not -> Create item row
-> Rename file to item row ID
I'd rather just do:
Validate file
if failed -> show errors
if not -> create row, upload file
Makes more logical sense that way. Ideas? Is this possible? Thanks.
