  
 
Upload script - Printable Version 
 
-Shoutbox (https://shoutbox.menthix.net) 
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58) 
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9) 
+---- Forum: Tech Talk (/forumdisplay.php?fid=17) 
+----- Thread: Upload script (/showthread.php?tid=44701)
 
Upload script by absorbation on 05-14-2005 at 07:09 PM
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.  
  
RE: Upload script by user27089 on 05-14-2005 at 09:18 PM
There are some good upload scripts on hotscripts.com, please note that you need a php enabled host.  
 
Uploader Scripts - HotScripts.com 
 
 
 
 
 
 
quote: Originally posted by raceprouk 
I find this site incredibly useful...
   
Wouldn't it be more sufficient for you to post a good reply, in case other users search the forum?
  
RE: Upload script by Stigmata on 05-14-2005 at 09:21 PM
 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 Upload br> 
    <input type="file" name="filename1" size="20" tabindex="1"><br> 
 
    <input type="hidden" name="action" value="uploadProg"> 
    <input type="submit" value="Upload Files"> 
    </form><?} 
    switch ($action){ 
    default: 
    main(); 
    break; 
    case "uploadProg": 
    if ($filename1=="none") {echo("<h1>No File Selected....</h1>"); break;} 
    uploadProg($filename1,$filename1_name); 
    break; 
    } 
?>    
   
  mine
 
RE: Upload script by absorbation on 05-18-2005 at 05:47 PM
Is there a a script to display things like anyone can upload and use. It shows the author commments screenshots etc.   please help me 
 
I shall reward anyone who helps me  
  
 |