PHP代码:
$target_path='uploads/';
//$target_path=$target_path.basename($_FILES['photo']['name']);
$res=move_uploaded_file($_FILES['photo']['tmp_name'],$target_path);
if($res)
//perform insert query
else
//echo 'file not uploaded';
HTML 代码:
<td colspan="3"> <input type="file" name="photo" id="photo"> </td>
执行后,图像文件不会移动到 target_path 文件夹。此外, $res 的值仍然为空。
我需要 $res 的值,因为如果变量具有“true”作为值,我想执行插入查询。
上传的文件没有错误。它存在,target_path 也存在。target_path 文件夹中也没有同名文件。