1. Go to this page and download the library: Download klapuch/form 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/ */
new Form\Select(
new Form\FakeAttributes(['name' => 'fruit']),
new Form\Option(
new Form\DependentAttributes(['value' => 'apple'], $this->storage, 'fruit'),
'Apple',
new Validation\OneOfRule(['apple', 'berry'])
),
new Form\Option(
new Form\DependentAttributes(['value' => 'berry'], $this->storage, 'fruit'),
'Berry',
new Validation\OneOfRule(['apple', 'berry'])
)
);
new Form\BoundControl(
new Form\Input(
new Form\StoredAttributes(
[
'type' => 'email',
'name' => 'email',
'class' => 'form-control',
'
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.