Skip to content

Commit b8abf03

Browse files
authored
Update README.md
1 parent 1a49a88 commit b8abf03

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,30 @@
11
# php-file-explorer-simple
22
[PHP] Simple explorer with simple authorization
3+
4+
***PHP v7.2+***
5+
6+
## Getting started
7+
1. Cloning this repository
8+
2. Launch **index.php** file for initialization
9+
3. Update **configuration.php** file
10+
```php
11+
<?php
12+
$configuration=[
13+
"login" => "<value>", // User name for authorization
14+
"pwd" => "<value>", // Password for authorization
15+
"title" => "<value>" // Text in the <title> of the page
16+
];
17+
?>
18+
```
19+
## Overview of functions
20+
- Authorization
21+
- Creating a file and Upload file
22+
- Open in file editor
23+
- Open in browser
24+
- Deleting a file
25+
- Downloading files
26+
- Creating a directory
27+
- Open in explorer
28+
- Open in browser
29+
- Deleting a directory
30+
- Downloading directory

0 commit comments

Comments
 (0)