• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

Looking for free UPLOAD script

qaazaa

New Member
Hello, i am looking for a FREE Php Upload script where someone can upload a file without even registering. then there will be a page where everyone can see all the uploaded files. its a non-registering script. and also when someone uploads they will put a description and their name and email. thanks all! :)
 
You can find such scripts at www.hotscripts.com but if I were you, I wouldn't look for a script like that. I mean, how can you prevent users from abusing it to upload illegal content, or suspicious scripts?
 
where can i get that uploadit? i can prevent it, there is a limitation of what kind of file can a user be uploaded :)

---------

found that - uploadit.org. i dont need a site, i need a script! :)
 
Last edited:
<?php
if ($send) {
move_uploaded_file($file,"path/$archivo_name");
$url = "http://www.url.com/path/$archivo_name";
echo "File uploaded blah blah";
}
else {
?>
<form method="post" action="upload.php" enctype="multipart/form-data">
<input type="file" name="file"><br>
<input name="send" type="submit">
<?php
}
?>
 
Back
Top