Hi, i need a script where people can upload an image to me from there comp. Max size of image to be 100k.
I recently got a script from this site but i keep getting an 'error' message. The script i got is.
HTML Code:
<form enctype="multipart/form-data" action="upload.php" method="post"> <input type="hidden" name="MAX_FILE_SIZE" value="100000" /> Choose a file to upload: <input name="userfile" type="file" /> <input type="submit" value="Upload File" /></form>
------------------------------------
upload.php:
PHP Code:
<?php
$uploadDir = '/var/www/uploads/';
$uploadFile = $uploadDir . $_FILES['userfile']['name'];
print "<pre>";
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadFile))
{
print "File was successfully uploaded.\n";
}
else
{
print "Error\n";
}
print "</pre>";
?>
I dont have much experance with codeing so if anyone can help getting one up and running i will be more than happy to reward you with $30 via paypal for your help. I need this done ASAP, or if you can point me in the right direction on where i can get one from.
if you need to get in contact me with msn or email ssaaiinnttss@hotmail.com or just email me. thanks
danny
|