What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » Upload script

Upload script
Author: Message:
absorbation
Elite Member
*****

Avatar

Posts: 3636
Reputation: 81
– / Male / Flag
Joined: Feb 2005
O.P. Upload script
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. :P
05-14-2005 07:09 PM
Profile PM Find Quote Report
user27089
Disabled Account


Posts: 6321
Joined: Nov 2003
Status: Away
RE: Upload script
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?

This post was edited on 05-14-2005 at 09:18 PM by user27089.
05-14-2005 09:18 PM
Profile PM Find Quote Report
Stigmata
Veteran Member
*****



Posts: 3520
Reputation: 45
20 / Other / Flag
Joined: Jul 2003
RE: Upload script
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

This post was edited on 05-14-2005 at 09:21 PM by Stigmata.
05-14-2005 09:21 PM
Profile PM Web Find Quote Report
absorbation
Elite Member
*****

Avatar

Posts: 3636
Reputation: 81
– / Male / Flag
Joined: Feb 2005
O.P. RE: Upload script
Is there a a script to display things like anyone can upload and use. It shows the author commments screenshots etc. :P please help me

I shall reward anyone who helps me :D
05-18-2005 05:47 PM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On