I want to expand my basic file uploader. Here is the code:
and i have a basic form which consists of a text field, a browse button, and an upload button which points to the above PHP.
At the moment i can only upload 1 file at a time of the one type (jpg).
I have some requirements below:
How easy would it be to do the above?
Code:
<?php
//Variables
$_FILES["uploaded_file"]["name"];
$_FILES["uploaded_file"]["type"];
$_FILES["uploaded_file"]["size"];
$_FILES["uploaded_file"]["tmp_name"];
$_FILES["uploaded_file"]["error"];
//Check that we have a file
if((!empty($_FILES["uploaded_file"])) && ($_FILES['uploaded_file']['error'] == 0)) {
//Check if the file is JPEG image and it's size is less than 300Kb
$filename = basename($_FILES['uploaded_file']['name']);
$ext = substr($filename, strrpos($filename, '.') + 1);
if (($ext == "jpg") && ($_FILES["uploaded_file"]["type"] == "image/jpeg") &&
($_FILES["uploaded_file"]["size"] < 1200000)) {
//Determine the path to which we want to save this file
$newname = dirname(__FILE__).'/phpupload/uploaddir/'.$filename;
//Check if the file with the same name is already exists on the server
if (!file_exists($newname)) {
//Attempt to move the uploaded file to it's new place
if ((move_uploaded_file($_FILES['uploaded_file']['tmp_name'],$newname))) {
echo "It's done! The file has been saved as: ".$newname;
} else {
echo "Error: A problem occurred during file upload!";
}
} else {
echo "Error: File ".$_FILES["uploaded_file"]["name"]." already exists";
}
} else {
echo "Error: Only .jpg images under 300Kb are accepted for upload";
}
} else {
echo "Error: No file uploaded";
}
?>
and i have a basic form which consists of a text field, a browse button, and an upload button which points to the above PHP.
At the moment i can only upload 1 file at a time of the one type (jpg).
I have some requirements below:
- The ability to upload multiple files in one session (maybe 5 at a time)
- If a filetype of the same name is uploaded, i want it to amend the name instead of refusing to upload it
- The ability to upload files of multiple types (jpg, wmv, avi, pdf, doc)
- A seperate page that will display a gallery (small thumbnails of the images only that have been uploaded.
How easy would it be to do the above?