几天前发生此问题。此脚本在localhost和另一个在线服务器上运行良好。希望得到回应。我无法在服务器上传文件。
<!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!";
}
}
?>
答案 0 :(得分:0)
if(isset($_POST['save']))
我认为这就是问题所在。输入似乎未定义。只需添加它,就像这样:
<input type="submit" name="save" id="save" value="sent" />