我正在尝试按类别将图像上传到不同的目录..我已经设置了其他所有内容,但是当我尝试上传图像时,它涉及到 images/...而不是让我们说 images/boxes/...。为什么用$类别“盒子”的价值?我哪里做错了?这是我试图使用的脚本的一个例子..有人可以帮我吗?
$sql = mysql_query("UPDATE products SET product_name='$product_name', price='$price', details='$details', category='$category', subcategory='$subcategory' WHERE id='$pid'");
if ($_FILES['fileField']['tmp_name'] != "") {
// Place image in the folder
$newname = "$pid.jpg";
move_uploaded_file($_FILES['fileField']['tmp_name'], "../images/$newname");
}
header("location: inventory_list.php");
exit(); }