PHP code example of ppi / form

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->text('username');
$usernameElement = $form->get('username');
 php

$form = new Form();

$form->text('username')
    ->attr('class', 'username-field')
    ->attr('id', 'username-field');

 php

$form = new Form();
$form->text('username')->setValue($userEntity->getUsername());

 php

$form = new Form();
// ... add elements
return $this->render('....', compact('form'));
 php
<div class="username-container">
<?= $form->getElement('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
    
}