PHP File Uploader Demos
Every sample below runs live — upload a real file and watch it work. Each shows the properties involved and the source behind it, and the evaluation download ships with all of them.
Start here: allowed types jpg, gif, png, zip, maximum 10 MB per file.
Try it: pick several files at once - each gets its own progress bar, and you can cancel mid-transfer.
Working the way you need? Download the free trial or see licence pricing from $99.
<?php
require_once "phpuploader/include_phpuploader.php";
$uploader = new PhpUploader();
$uploader->MultipleFilesUpload = true;
$uploader->MaxSizeKB = 10240;
$uploader->AllowedFileExtensions = "jpeg,jpg,gif,png,zip";
$uploader->Render();
?>
All samples
Basic examples
Ajax samples
Plain-PHP guides to size limits, error codes, security, chunked uploads and progress bars.
The evaluation build ships with every sample on this page, with full source.
Perpetual licence with free upgrades and no recurring fee — domain, IP, team and enterprise options.
The component also ships for .NET and Classic ASP, with the same browser UI and the same demo set.
