dongwuwan5646 2016-03-05 07:18
浏览 66
已采纳

为什么文件没有在POST变量中发送,即使我在表单中有enctype =“multipart / form-data”

I am trying to update an image from something that was already uploaded but the input of type file is not being sent and I can't seem to find out why. The variable fileToUpload is not being sent.

main.php

<form class="form-horizontal" action="modData.php" method="post" enctype="multipart/form-data">

<div class="form-group">
<label class="control-label col-sm-2 col-lg-offset-2">Image:</label>
    <div class="col-xs-4">
        <?php
            echo '<a href="#"><img src="'.$img.'" alt="img" height="350" width="584"></a>';
        ?>
        <input type="file" class="form-control" id="fileToUpload" name="fileToUpload">
    </div>
</div>
<div class="form-group">
<label class="control-label col-sm-2 col-lg-offset-2">Description:</label>
    <div class="col-xs-8">
        <input name="des" id="des" value="<?php echo $des?>">
        <input type='hidden' name="des2" id="des2" value="<?php echo $des?>">
    </div>
</div>

<button type="submit" class="btn btn-success pull-right" name="save" value="save" id="save">Save</button>
</form>

modData.php

if(isset($_POST['fileToUpload'])){
    echo 'file sent!!!';
    $target_dir = "photos/";

    $target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
    echo $target_file;
    $uploadOk = 1;
    $imageFileType = pathinfo($target_file,PATHINFO_EXTENSION);
    // Check if image file is a actual image or fake image
    if(isset($_POST["submit"])) {
        $check = getimagesize($_FILES["fileToUpload"]["tmp_name"]);
        if($check !== false) {
            echo "File is an image - " . $check["mime"] . ".";
            $uploadOk = 1;
        } else {
            echo "File is not an image.";
            $uploadOk = 0;
        }
    }
    if ($_FILES["fileToUpload"]["size"] > 500000) {
        echo "Sorry, your file is too large.";
        $uploadOk = 0;
    }
    // Allow certain file formats
    if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"
    && $imageFileType != "gif" && $imageFileType != "JPG" && $imageFileType != "PNG" && $imageFileType != "JPEG"
    && $imageFileType != "GIF" ) {
        echo "Sorry, only JPG, JPEG, PNG & GIF files are allowed.";
        $uploadOk = 0;
    }
    // Check if $uploadOk is set to 0 by an error
    if ($uploadOk == 0) {
        echo "Sorry, your file was not uploaded.";
    // if everything is ok, try to upload file
    } else {
        $des = $_POST['des'];
        $des2 = $_POST['des2'];
        if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {

            $res = mysql_query("UPDATE `image` SET `des`='$des', `img`='".$target_file."' WHERE des='$des2'");

            echo "The file ". basename( $_FILES["fileToUpload"]["name"]). " has been uploaded.";
        } else {
            echo "Sorry, there was an error uploading your file.";
            error_reporting (0);
        }
    }
}
else{
    echo 'Did not send and only doing this';
    $des = $_POST['des'];
    $des2 = $_POST['des2'];

    $res = mysql_query("UPDATE `image` SET `des`='$des' WHERE des='$des2'");
}
  • 写回答

1条回答 默认 最新

  • duan0531 2016-03-05 07:23
    关注

    The file is sent, but you're checking an undefined variable.

    Change

    if(isset($_POST['fileToUpload'])){ 
    

    to

    if(isset($_FILES['fileToUpload'])){
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制