PHP code example of ailixter / aiix

1. Go to this page and download the library: Download ailixter/aiix 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/ */

    

ailixter / aiix example snippets



$data = new \AIIX\Data($array);
$data->set('key1/key2', 'value1')->set('key3', 'value2');
$value = $data->get('key1/key2', 'default');



\AIIX\Form::create($formdata);

----------------------------

echo \AIIX\Form::label('firstname');
echo \AIIX\Form::control('firstname');