
Max’s FileUpload PHP Script
A simple file upload page uploads files to a specified folder.Installation:Just copy your files to your storage and then open the page you can go to upload.Use:Use a simple code to paste this fill in just this code:
- <?php
- require_once("maxUpload.class.php");
- $myUpload = new maxUpload();
- $myUpload->setUploadLocation("./mappa"); //ha ezt nem adod meg akkor oda tölti fel, ahol a feltöltő form található
- $myUpload->uploadFile();
- ?>