Skip to content

Commit 1e2b019

Browse files
author
Fredrick Peter
committed
readme update
1 parent ea18f11 commit 1e2b019

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* [Instantiate](#instantiate)
1414
* [Amazon Aws S3](#amazon-aws-s3)
1515
* [Global Config](#global-config)
16+
* [INPUT HTML STRUCTURE](#input-html-structure)
1617
* [Response Data](#response-data)
1718
* [Get Message](#get-message)
1819
* [Get Status](#get-status)
@@ -22,7 +23,6 @@
2223
* [Form](#form)
2324
* [Unlink](#unlink)
2425
* [Usage](#usage)
25-
* [INPUT HTML STRUCTURE](#input-html-structure)
2626
* [Name](#name)
2727
* [Driver](#driver)
2828
* [BaseDir](#baseDir)
@@ -158,6 +158,17 @@ config_file(
158158
);
159159
```
160160

161+
### INPUT HTML STRUCTURE
162+
163+
```
164+
<input type="file" name="avatar">
165+
```
166+
167+
- or -- `For Multiple Data`
168+
```
169+
<input type="file" name="avatar[]" multiple>
170+
```
171+
161172
## Response Data
162173
- How to retrieve data
163174

@@ -253,17 +264,6 @@ $upload->get('name);
253264

254265
## Usage
255266

256-
### INPUT HTML STRUCTURE
257-
258-
```
259-
<input type="file" name="avatar">
260-
```
261-
262-
- or -- `For Multiple Data`
263-
```
264-
<input type="file" name="avatar[]" multiple>
265-
```
266-
267267
### Name
268268
- Takes one param `string` as input name
269269
- Static method by default

0 commit comments

Comments
 (0)