dwthai/dw-upload

The simple file uploads for Dreamweaver user.

1.02 2019-04-22 13:46 UTC

This package is auto-updated.

Last update: 2024-04-24 01:14:18 UTC


README

ใช้เรียนรู้ประกอบสื่อการสอนคลิปวีดีโอชุด Dreamweaver Database โดย DwThai.Com

Example

This component simplifies file uploading. Assume a file is uploaded with this HTML form:

<form method="post" enctype="multipart/form-data" action="">
    <input type="file" name="image" value=""/>
    <input type="submit" value="Upload Now !"/>
</form>

When the HTML form is submitted, the server-side PHP code can upload the file like this:

<?php
use DwThai\DwUpload;
$fileName =  DwUpload::DwUpload($_FILES['image'],'img/',true);
echo $fileName;

Description

DwUpload ( File , [Path , Random Filename ] ) : string

File: string อาจได้จากตัวแปร $_FILES[..input name...]

Path: string (default: img-products) ตำแหน่งเก็บไฟล์เมื่อ upload

Random Filename: true/false (default: false) booleans

Return: string คืนค่ากลับเป็นชื่อไฟล์ที่ upload (File Name) String filename return

How to Install

Create a composer.json file in your project root:

{
    "require": {
        "dwthai/dw-upload": "*"
    }
}

Install via composer:

composer require dwthai/dw-upload

Author

DwThai.Com

Youtube channel

DwThai.Com Channel

License

MIT Public License