PHP Classes

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    
Ratings Unique User Downloads Download Rankings
StarStarStarStar 68%Total: 383 This week: 2All time: 6,704 This week: 96Up
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
Age: ???
All time rank: 35943 in Cameroon Cameroon
Week rank: 106 Up1 in Cameroon Cameroon Up

Example


<?php
   
if(isset($_POST["Send"])){ // If form is submited
       
require_once("uploadClass.php");
       
$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>


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:383
This week:2
All time:6,704
This week:96Up
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:381
 
Very simple and secure way to upload images.
7 years ago (Terry Woody)
80%StarStarStarStarStar