上传图像脚本不工作


Upload image script is not working

我有一个图片上传脚本在上传表单页面中有一个输入字段,如下所示:

处理图片上传的部分php脚本是:
$path_parts = pathinfo($_FILES['product_image']['name']);
$imgext = $path_parts['extension'] ;
$imgextension = "." . $imgext ; //
// copying files to server
$target = "targetdomainpath/products/";
$target = $target . $_POST['product_name'].$imgextension;
//copying image
if(move_uploaded_file($_FILES['product_image']['tmp_name'], $target)) {
    //Tells you if its all ok
    echo "The file ". basename( $_FILES['uploadedfile']['name']). " has been uploaded, and information has been modified inside the directory";
} else {
    //Gives and error if its not
    echo "Sorry, there was a problem uploading your file. or you didnt select photo from the computer";
}
// end image copying

我的问题是文件没有上传。

$_FILES上执行var_dump,如果它为空,则可能没有正确提交表单。

包含文件的表单必须包含enctype="multipart/form-data"

祝你好运!