A progressive PHP framework for building effecient and scalable server-side applications.
Assegai is a framework for building efficient, scalable PHP server-side applications. It uses modern PHP (PHP 8.4+) and combines elements of OOP (Object Oriented Programming) and FP (Functional Programming).
The AssegaiPHP Forms Library is a powerful and flexible tool for managing HTML forms submitted using POST, PUT, or PATCH requests. This library is designed to simplify the process of handling form data, validation, and submission in PHP web applications. It provides a clean and intuitive interface for creating, processing, and validating forms, making it easier for developers to build robust and secure web applications.
For commit and pull request conventions in this repo, see:
Git hooks for this repository live in .githooks. Running composer install or composer update
will automatically configure core.hooksPath for this clone so the committed pre-push checks are used. If you
need to apply the hook configuration manually, run:
composer run hooks:install- Form Creation: Easily create HTML forms programmatically using a simple and intuitive syntax.
- Form Fields: Support for various types of form fields such as text fields, numeric fields, and more.
- Data Binding: Automatically populate form fields with data from your models or arrays.
- Validation: Define validation rules for form fields and perform server-side validation effortlessly.
- Error Handling: Automatically retrieve validation errors for form fields.
- Customization: Highly customizable rendering and extending capabilities.
- Compatibility: Works well with modern PHP applications and follows best practices.
You can install the AssegaiPHP Forms Library using Composer:
composer require assegaiphp/forms- Create a Form:
use Assegai\Forms\Form; use Assegai\Forms\Enumerations\HttpMethod; $form = new Form( method: HttpMethod::POST, selector: '#contact-form' );
- Add Form Fields:
$form->set('name', ''); $form->set('email', ''); $form->set('message', '');
- Process Form Submission:
if ($form->isSubmitted()) { // Validate the form $form->validate(); if ($form->isValid()) { // Process the form data $data = $form->getData(); // ... } else { $errors = $form->getErrors(); // Handle validation errors } }
- Render the Form:
echo $form->render();
use Assegai\Forms\Form;
use Assegai\Forms\Enumerations\HttpMethod;
use Assegai\Forms\FormControls\TextField;
$form = new Form(method: HttpMethod::POST, selector: '#user-form');
// Create a field with validation rules
$nameField = new TextField('name', '', ['required', 'min:3']);
$form->addField($nameField);
// Or add fields and set validation rules later
$form->set('email', '');
$emailField = $form->getField('email');
$emailField->addValidationRules('required', 'email');// Get data as an associative array
$data = $form->getData();
// Get data as a stdClass object
$dataObject = $form->getData(asObject: true);// Check if a field exists
if ($form->has('name')) {
// Get a specific field value
$name = $form->getFieldValue('name');
// Get the field object
$nameField = $form->getField('name');
// Remove a field
$form->removeField('name');
}The form supports multiple HTTP methods:
use Assegai\Forms\Enumerations\HttpMethod;
// POST forms
$postForm = new Form(method: HttpMethod::POST, selector: '#form');
// GET forms
$getForm = new Form(method: HttpMethod::GET, selector: '#search');
// PUT/PATCH forms for updates
$updateForm = new Form(method: HttpMethod::PUT, selector: '#update-form');
$patchForm = new Form(method: HttpMethod::PATCH, selector: '#patch-form');The selector parameter can be used to set the form's ID, CSS class, or action URL:
// Set the form ID
$form = new Form(selector: '#my-form');
// Set the form CSS classes
$form = new Form(selector: '.form-class1.form-class2');
// Set the form action URL
$form = new Form(selector: '/submit-form');For more detailed usage and customization options, please refer to the Documentation.
We welcome contributions from the community! If you'd like to contribute to the AssegaiPHP Forms Library, please follow our Contribution Guidelines.
