Example #1
0
<?php

use PhpSolutions\File\Upload;
// set the maximum upload size in bytes
$max = 51200;
if (isset($_POST['upload'])) {
    // define the path to the upload folder
    $destination = 'C:/upload_test/';
    require_once '../PhpSolutions/File/Upload.php';
    try {
        $loader = new Upload($destination);
        $loader->upload();
        $result = $loader->getMessages();
    } catch (Exception $e) {
        echo $e->getMessage();
    }
}
?>
<!DOCTYPE HTML>
<html>
<head>
    <meta  charset="utf-8">
    <title>Upload File</title>
</head>

<body>
<?php 
if (isset($result)) {
    echo '<ul>';
    foreach ($result as $message) {
        echo "<li>{$message}</li>";
Example #2
0
        $meetingfee="";
    } 
*/
// set the maximum upload size in bytes
use PhpSolutions\File\Upload;
// set the maximum upload size in bytes
$max = 60000 * 1024;
// 60 MB
if (isset($_FILES['uploadFile'])) {
    // define the path to the upload folder
    $destinationFile = 'uploads/file/';
    try {
        $loaderFile = new Upload($destinationFile, 'uploadFile');
        $loaderFile->setMaxSize($max);
        $loaderFile->allowAllTypes();
        $loaderFile->upload();
        $uploadFile1 = $loaderFile->getName();
        $resultFile = $loaderFile->getMessages();
        $_SESSION['uploadFile'] = $uploadFile1;
    } catch (Exception $e) {
        echo $e->getMessage();
    }
    if (!empty($uploadFile1)) {
        $uploadsFile = $destinationFile . $uploadFile1;
    } else {
        $uploadsFile = "";
    }
}
/*if (isset($_FILES['uploadBill'])) {
    // define the path to the upload folder
    $destinationBill = 'uploads/bill/';