我刚刚开始收到错误 Array ( [type] => 2 [message] => copy(): Filename cannot be empty [file] => /home/fraptech/public_html/notredamedelhi.com/modifyhome.php [line] = > 73 ) 即 HTTP_POST_FILES 行 在一个月之前,文件正在成功上传。这个问题现在才开始。从那以后我没有修改过代码。
<?php
if ($_POST['Upload'])
{
$file_name = $HTTP_POST_FILES['ufile']['name'];
$new_file_name="slider_photo1.jpg";
$path= "images/".$new_file_name;
if($ufile !=none)
{
if(copy($HTTP_POST_FILES['ufile']['tmp_name'], $path))
{
echo "Successful<BR/>";
}
else
{
echo "Error ";
print_r(error_get_last());
}
请帮助提供代码。