The following code was used but it failed to transfer the image file to PHP file upload.php
Could it be the php.ini is not setup to allow file uploads.
Yes the file details would be there but surely the $_POST [ ] is needed to get the information from the FORM first. This is not the complete file I would, it is just testing for transfer of details from the FORM which seems not to be working. One of the things I want help with is checking the PHP.ini file.
I haven’t done much with it, so I’m not sure whether that specific field would also be included in $_POST. You could find out easily by just using var_dump($_POST) and var_dump($FILES) as I’m sure you now.
The other inputs should be in $_POST, but the actual file upload should be in $_FILES.
But what other info are you getting from the form? The only other inputs are hidden ones, where you set the values yourself. I don’t see the point of those at all.