Upload script help
Posted: Sun Aug 03, 2003 12:47 am
Warning: copy() has been disabled for security reasons in /data/hosted/Gappa/dor/upload.php on line 6
any other way of doing this?? can't use copy...
Code: Select all
<?
if ($file == "none") {
print "You must specify a file to upload";
}
else {
copy($file, "/files/$file_name");
unlink($file);
}
?>