Hey all,
I've got a quick, and most likely very stupid problem. 😉 I'm trying to upload an image to a server using both:
move_uploaded_file($_FILES['image']['tmp_name'], "../../playerimages/$imageName");
and
copy($_FILES['image']['tmp_name'], "../../playerimages/$imageName");
The directory "playerimages" is set to 777, but it doesn't seem to want to copy anthing... When I use move_uploaded_file, no warning is given, but when copy is used, it says that it can't find "filename.jpg".
Any thoughts on why it won't upload?
Thanks in advance!
insectis