Click here:

Upload File



Powered by PHP Uploader Downloader "; break; /* case "download": echo " File Download Upload File Return to $websitename"; $list = ""; $list .= ""; $dir = opendir($absolute_path); while($file = readdir($dir)) { if (($file != "..") and ($file != ".")) { $list .= ""; } } $list .= "
Click To Download
$file
"; echo $list; echo"

Powered by PHP Uploader Downloader "; break; */ case "upload": echo" File Upload

File to upload:

Your file name should be the same as you submitted in the form.
The picture file names should be in the form of your last name and first name, such as :
Last_First1.jpg, or Jones_Bob2.gif
Please rename your original file if necessary.



Powered by PHP Uploader Downloader "; break; //File Upload case "doupload": $dir = "dir"; if ($file != "") { if (file_exists("$absolute_path/$file_name")) { die("File already exists"); } if (($sizelimit == "yes") && ($file_size > $sizebytes)) { die("File is to big. It must be $sizebytes bytes or less."); } @copy($file, "$absolute_path/$file_name") or die("The file you are trying to upload couldn't be copied to the server"); } else { die("Must select file to upload"); } echo " File Uploaded "; echo $file_name." was uploaded"; echo "
Upload Another File Return to $websitename

Powered by PHP Uploader Downloader "; break; } include ("footer.inc"); ?>