Hi all!
In a page I'm doing, I have a form with a file input. When I submit a file through form I can't use move_uploaded_file($FILE['image']['tmp_name'], "images/".$FILE['image']['name']) nor rename($FILE['image']['tmp_name'], "images/".$FILE['image']['name']), they always return false. But I can do it in my local server.
I tried to check if file is really uploaded. I check it with file_exists($FILE['image']['tmp_name']) and is_uploaded_file($FILE['image']['tmp_name']) and both return true.
I think is a permission problem, how can I solve this?
Thanks a lot!