Forum Moderators: coopster
Thumbnail Image File: <input type="file" name="proj_thumb_image">
Fullsize Image File:<input type="file" name="proj_full_image">
On the form Action page (where the form contents are handled) I have place the following code
echo "<p>Thumb temp file name: ".$_FILES['proj_thumb_image']['tmp_name']."</p>";
echo "<p>Full temp file name: ".$_FILES['proj_full_image']['tmp_name']."</p>";
I get a real name for $_FILES['proj_thumb_image']['tmp_name'] but I get 'none' for $_FILES['proj_full_image']['tmp_name']. I have a feeling this is going to be one of those 'DOH' moments.
php.ini:
file_uploads [php.net]
upload_max_filesize [php.net]
upload_tmp_dir [php.net]
post_max_size [php.net]