KoolUploader - PHP Ajax File Upload
KoolUploader is amazing PHP Ajax File Upload with Real-Time Progress Tracking capability. This is an art of power and simplicity. KoolUploader is amazing PHP Ajax File Upload with Real-Time Progress Tracking capability.
Key features:
Files are uploaded without refreshing page.
Real-time Ajax uploading progress tracking.
Support simultaneous file uploading.
No limitation in total files size uploaded.
Very easy to use, simple PHP code.
Powerful client-side API.
Icons of common file extensions are provided.
Many skins are available to choose.
Skin can be all customized as wished.
Key features:
Step by step guides
<?php //Step 1: Register KoolUploader component to your page require "kooluploader/kooluploader.php"; //Step 2: Create kooluploader object. $kul = new KoolUploader("kul"); //Step 3: Set properties for kooluploader $kul->styleFolder = "kooluploader/styles/default"; $kul->handlePage = "handleupload.php"; $kul->progressTracking = true; ... ?> <html> <head></head> <body> <!-- Step 4: Render kooluploader --> <?php echo $kul->Render();?> </body> </html>