I am writing a script in php for the file upload on the server. And the code is following..
$target_path = "uploaded_images/";
$target_path = $target_path . basename( $_FILES['image']['name']);
if(move_uploaded_file($_FILES['image']['tmp_name'], $target_path)) {
echo "The file ". basename( $_FILES['image']['name']).
" has been uploaded";
} else{
echo "There was an error uploading the file, please try again!";
}
But the function move_uploaded_file() is not working and it gives the following error..
Warning: move_uploaded_file(uploaded_images/Mordent.jpg) [function.move-uploaded-file]: failed to open stream: Permission denied
Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move '/tmp/phpOWVz7o' to 'uploaded_images/Mordent.jpg'
I have checked all the permisions to the folders and even the safe mode in php.ini is off.
Please help me out I need this to be urgently done.