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 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示
  • ¥15 求三国群英传pl国战时间的修改方法
  • ¥15 matlab代码代写,需写出详细代码,代价私
  • ¥15 ROS系统搭建请教(跨境电商用途)
  • ¥15 AIC3204的示例代码有吗,想用AIC3204测量血氧,找不到相关的代码。