我试图通过php在服务器上传文件我的代码在localhost上运行正常但是我将它上传到服务器并运行它会产生500内部服务器错误我是新蜜蜂并且找不到错误所以请在这里帮助我是我的代码
<?php
$path=$_REQUEST['path'];
if(!(file_exists('$path')))
{
//create the folder
mkdir($path,0777,true);
//give permission to the folder
//chmod('C:/Users/dhanu-sdu/Desktop/test', 0777);
}
if (file_exists($path. $_FILES["file"]["name"]))
{
echo $_FILES["file"]["name"] . " already exists. ";
unlink ( $path. $_FILES["file"]["name"]);
}
move_uploaded_file($_FILES["file"]["tmp_name"],$path. $_FILES["file"] ["name"]);
?>
请人们帮助我,我的代码中的错误在哪里?