Forum Moderators: coopster
i am having serious issues with uploading files to my server. the files do not even get saved in the temp directory, not to mention even moving to another.
I know this because i used the following to check;
if (!is_uploaded_file($_FILES['file']['tmp_name'])) {
echo "File was not uploaded";
exit;
}
p/s: I checked my php.ini and saw that Globals are set to off. Could this be the problem?
I am really confused right now.