i want to move_uploaded files a folder back in my server directory structure but doesn’t seems to work here is my script
$filename='image.jpg';
$path="../folder".$filename;
if(move_uploaded_file($_FILES["uplogo"]["tmp_name"],$path))
{
echo "success";
}
the path ../folder is not working and when i do /folder it work so how can i mange my upload in this way
A forward slash was missing at the end of
folder, which means it was trying to move the file to:as opposed to: