Examples

Large File Upload

Files are streamed to the server and saved straight into a folder with SaveDirectory, so upload size is limited only by your PHP configuration.

Allowed file types: jpg, gif, png, zip.

Demo code

<?php
    $uploader = new PhpUploader();
    $uploader->MultipleFilesUpload = true;
    $uploader->InsertText = "Upload";
    $uploader->AllowedFileExtensions = "jpeg,jpg,gif,png,zip";
    $uploader->SaveDirectory = "savefiles";
    $uploader->Render();
?>
Testing the demo: pick a large file and watch the progress bar, transfer rate and remaining time update as it uploads.