我正在尝试在一个文件夹中插入图像,但我想我没有正确地执行此操作,有人可以更正我的代码吗?
//Place the image in the folder
$newname = "$menu_name-01.jpg";
move_uploaded_file($_FILES['fileField']['tmp_name'],"/product_images/$brand/$newname");
其中,
$menu_name = trim(mysql_prep($_POST['menu_name']));
$brand = trim(mysql_prep($_POST['brand']));
答案 0 :(得分:1)
你应该改变:
$newname = "$menu_name-01.jpg";
到
$newname = $menu_name.'-01.jpg';
因为它整个查找变量($ menu_name-01.jpg)而不是将$ menu_name变量与-01.jpg连接起来。