<?php
if ($File_name){
if (copy($FileToUpload, "/file/$File_name")){
echo 'The file was successfully uploaded!';}
} else {
echo "Your file could not be copied.";
unlink($FileToUpload);
}
?>
Ok the error i get after i select a file wiht my html is. Your file could not be copied
then i get
Warning: unlic(c:/filename.pdf) NO such file or directory in /home/user/www
thank you for any support you can give me