PHP文件上传错误

时间:2018-02-19 19:26:24

标签: php html file upload

我有一个表单,我正在尝试将文件移动到“文件夹”,但不知怎的,我失败了。该文件未移动到该文件夹​​。

我知道我的代码可能有问题,我是求助者,所以请善待我,如果你能告诉我该放什么,我真的很感激。谢谢。

 $yourname = mysqli_real_escape_string($link, $_REQUEST['yourname']);
        $file = $_FILES['file']['name'];
            $file_loc = $_FILES['file']['tmp_name'];
        $folder="uploads/";

    // make file name in lower case
    $new_file_name = strtolower($file);
    // make file name in lower case
    
    $final_file=str_replace(' ','-',$new_file_name);

    $sql = "INSERT INTO userfiles (yourname, file) VALUES ('$yourname', '$final_file')";
    if(mysqli_query($link, $sql)){
    header('Location: http://pokus2.envi-help.cz/cestak.php');
    exit;
    } else{


        echo "ERROR: not added " . mysqli_error($link);
    }
    // close connection
    mysqli_close($link);
    }
    ?>

0 个答案:

没有答案