I'm trying to upload a .PDF file and keep geting this error
Warning: Unable to create 'path/htdocs/bpofiles/': Is a directory in /path/htdocs/bpoadmin/upload.php3 on line 35
here the script
$the_path = "/path/htdocs/bpofiles/$numadd";
note: the last dir is dynamiclly put notice in the error it's not there
if ($submit) {
if (!copy($the_file, "$the_path")) {
echo " Succseful";
echo " ($userfile_type)";
} else {
echo " Order Not Complete</CENTER>";
}
unlink($the_file);
TIA
Richie TM