PHP code example of carlosocarvalho / simple-input

1. Go to this page and download the library: Download carlosocarvalho/simple-input library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

carlosocarvalho / simple-input example snippets





use Carlosocarvalho\SimpleInput\Input\Input;

#sending data post|get|put|delete

$post = Input::post('key');

$post_all =  Input::post();

$get = Input::get('key');

$get_all =  Input::get();