PHP Classes
elePHPant
Icontem

Simple upload class: Validate and process an uploaded file

Recommend this page to a friend!
  Info   View files Example   View files View files (3)   DownloadInstall with Composer Download .zip   Reputation   Support forum (2)   Blog    
Last Updated Ratings Unique User Downloads Download Rankings
2016-08-14 (2 months ago) RSS 2.0 feedStarStarStarStar 68%Total: 129 This week: 2All time: 8,315 This week: 591Up
Version License PHP version Categories
uploadclass 1.0.0Freely Distributable5HTTP, PHP 5, Files and Folders
Description Author

This package can validate and process an uploaded file.

It can take an array of values of an uploaded file and validate if it has been correctly uploaded, the allowed file name extensions and the size does not exceed a given limit.

Validated uploaded files are moved to a given destination directory.

Picture of Ngilio
  Performance   Level  
Name: Ngilio <contact>
Classes: 1 package by
Country: Cameroon Cameroon

Details
# INTRODUCTION #

The **uploadclass** package is a class designed to simplified upload process

# EXAMPLE #

To use this class, you just need to see example file. In fact, you just have to do something like :

<?php	
	if(isset($_POST["Send"])){		// If form is submited
		require_once("uploadClass.php");			// Load uploadClass file once
		$file=$_FILES["fileField"];					// Get file from form
		
		$destination="Uploaded_Files/";
		if (!file_exists($destination)) {		// If 'destination' folder dosn't exist, create
			mkdir($destination);
		}

		$process=new Upload($destination);		// Set 'destination' as new default destination folder for upload
		
		$uploadResult=$process->executeUpload($file);	// Attach file to upload process
		
		echo $uploadResult;
	}
?>

<form action="?" method="POST" enctype="multipart/form-data">
	<table id="dyntable" class="table table-bordered">
		<tr>
			<td>
				File
			</td>
			<td>
				<input type="file" name="fileField" id="fileField" placeholder="">
			</td>
		</tr>
		<tr>
			<td colspan="2">
				<center>
					<button type="submit" name="Send">Send</button>
					<button type="reset">Reinitialiser</button>
				</center>
			</td>
		</tr>
	</table>
</form>

# REFERENCE #

## public function setParameters($dest=null,$types=null) ##

Set new destination (dest) and authorized file extensions list (types)

## public function executeUpload($uploaded_file,$destination=null)

Get file and execute upload
  Files folder image Files  
File Role Description
Accessible without login Plain text file example.php Example Show how to use uploadclass
Accessible without login Plain text file readme Doc. Readme file
Plain text file uploadClass.php Class Full class description

 Version Control Unique User Downloads Download Rankings  
 0%
Total:129
This week:2
All time:8,315
This week:591Up
User Ratings User Comments (1)
 All time
Utility:87%StarStarStarStarStar
Consistency:81%StarStarStarStarStar
Documentation:87%StarStarStarStarStar
Examples:81%StarStarStarStarStar
Tests:-
Videos:-
Overall:68%StarStarStarStar
Rank:436
 
Very simple and secure way to upload images.
1 month ago (Terry Woody)
80%StarStarStarStarStar