Does anyone know a good upload script to host files and show them with various data and images. I wan't to make a file hosting page to host somefiles i need temparary.
code:<?
function uploadProg($filename1,$filename1_name){
########Set the destination here##############
$destination="/home/BLAHBLAH/public_html/uploads";
copy($filename1,$destination."/".$filename1_name);
echo "<h1>File(s) Uploaded...</h1>";
echo "<b>$filename1_name was uploaded succesfully.</b><br>";
echo "<a href="upload.php">Click here to go back.</a><br>";
echo "<a href="/uploads/">Click here to go to the uploads directory.</a>";
}
function main(){?>
<form method="post" action="#" enctype="multipart/form-data">
Files to Uploadbr>
<input type="file" name="filename1" size="20" tabindex="1"><br>