Skip to content

Commit

Permalink
add getPost(string $name = '')
Browse files Browse the repository at this point in the history
  • Loading branch information
attogram committed Feb 1, 2020
1 parent 09755a3 commit 3888b29
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,13 +142,19 @@ if (!$control) {

`public function getGet(string $name = '')`

* Get a global _GET variable, or empty string if not found
* Get a global `_GET` variable, or empty string if not found

### getPost

`public function getPost(string $name = '')`

* Get a global `_POST` variable, or empty string if not found

### getServer

`public function getServer(string $name = '')`

* Get a global _SERVER variable, or empty string if not found
* Get a global `_SERVER` variable, or empty string if not found

### getHost

Expand Down

0 comments on commit 3888b29

Please sign in to comment.