Can you please help me with this part of my php script.
Trying to upload file to server.
What is wrong with this script, it says;
( No such file or directory )
My code
if($userfile){
$file = ereg_replace(" ", "", $userfile);
$file_extention = strtolower(substr(strrchr($file, "."), 1));
$file_name = eregi_replace(".".$file_extention, "", $file);
$large = $path.$file_extention;
if(copy($userfile, $large)){
$text = LAN_202;
$ns -> tablerender(LAN_200, $text);
} else {
$ns -> tablerender("", ER_028);
}
}
}
thanks