_FILES['file1']['tmp_name']在php中上传文件时为空


_FILES['file1']['tmp_name'] is empty when tried to upload file in php

这个问题几天前就出现了。该脚本在本地主机和另一台在线服务器上运行良好。希望得到回应。我无法在服务器上上传文件。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<body>
<div align="center">
    <div style="border:solid;">
<form action="test-upload.php" method="post" enctype="multipart/form-data" name="f1" id="f1" onSubmit="return cb1();">  
<div align="left" class="contentrequire"><strong>Attach Excel File (Call Detail/Description) </strong></div>
    <label>
       <input type="file" name="file1" id="file1" />
            </label>
            <label>
            <input type="submit" name="save" id="save" />
            </label>
        </form>
      </div>
</div>
 <?php 
    if(isset($_POST['save']))
    {
        echo print_r($_FILES);
        ?>
        <?php 

    //$target_path = $target_path ."testpankaj".".".$ext;

        echo $_FILES['file1']['tmp_name'];
    if(move_uploaded_file($_FILES['file1']['tmp_name'], "images/" . $_FILES["file1"]['name'])) {
           echo "The file ".  basename( $_FILES['file1']['name']). 
        " has been uploaded";
        } else{
            echo "There was an error uploading the file, please try again!";
        }
    }
    ?>  

if(isset($_POST['save']))

我认为这就是问题所在。输入似乎没有被定义。只需添加它,像这样:

<input type="submit" name="save" id="save" value="sent" />