php – 上传文件表单 – 无法识别$_FILES变量

我有以下表格:

<form method="post" action="index.PHP">
    product name:
    <input type="text" name="product_name" value="<?PHP echo $product_name;?>"/>
    <br /> <br />
    product details
    <textarea rows = "6" cols = "30" name="product_details" > <?PHP echo $product_details;?></textarea>
    <br /> <br />
    product price
    <input type="text" name = "product_price" value="<?PHP echo $product_price;?>"/>
    <br /> <br />
    CN:
    <input type="text" name = "product_cn" value="<?PHP echo $product_cn;?>"/>
    <br /> <br />
    image
    <input type="file" name="fileField" />
    <br /> <br />

    <input type="submit" name="submit" value="register product" />
</form>

我的问题是,每当我尝试使用此代码处理图像时:

move_uploaded_file($_FILES['fileField']['tmp_name'],"../product_images/$newname");

我收到以下错误

Notice: Undefined index: fileField

这是为什么?

提前致谢!

解决方法

您必须在表单中添加enctype =’multipart / form-data’
Quote from this topic about this

When you make a POST request,you have to encode the data that forms the body of the request in some way.

HTML forms provide two methods of encoding. The default is application/x-www-form-urlencoded,which is more or less the same as a query string on the end of the URL. The other,multipart/form-data,is a more complicated encoding but one which allows entire files to be included in the data.

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...