1. Go to this page and download the library: Download ppi/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/ */
ppi / form example snippets
php
$form = new Form();
$form->text('username');
$form->password('password');
$form->password('confirm_password');
$form->submit('submit_button', 'Click to Continue');
php
$form = new Form();
$usernameElement = $form->text('username');
php
$form = new Form();
$form->text('username');
$entity = new UserEntity($userHelper->getByID($userID));
$form->bind($entity->toArray());
php
$element = new CustomElement();
$element->setValue($someValue);
$element->attr('id', 'custom-element');
$form->addElement($element);
php
use PPI\Form\Element\ElementInterface;
class CustomElement implements ElementInterface
{
protected $type = 'CustomElement';
// .. implement the methods in ElementInterface
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.