I'm very new to coding. I'm trying to upload an image (any file for now) in a particular folder.
<?php
$name = $_FILES["file"]["name"];
$tmpName = $_FILES["file"]["tmp_name"];
if(isset($name)){
    if(!empty($name)){
        $location = "uploads/";
        $destination_path = getcwd().DIRECTORY_SEPARATOR;
        if (move_uploaded_file($tmpName,$destination_path.$location.$name)) {
            echo "uploaded!";
        }
        else {
            echo "boo";
        }
    }
    else {
        echo "please choose a file";
    }
}
?>
<html>
<body>
   <form action="upload.php" method="POST" enctype="multipart/form-data">
    <input type="file" name="file">
    <br>
    <br>
    <input type="submit" value="SUBMIT">
    </form>
</body>
</html>
Everything is getting executed properly until the "move_uploaded_file" if-condition. Getting the else-echo-statement("boo")
