assegaiphp / forms
A simple PHP library for dealing with HTML form submissions.
Requires
- php: >=8.2
- assegaiphp/collections: ^0.3.2
- assegaiphp/util: ^0.4.2
- assegaiphp/validation: ^0.3.2
Requires (Dev)
- pestphp/pest: ^2.16
README
A progressive PHP framework for building effecient and scalable server-side applications.
Description
Assegai is a framework for building efficient, scalable PHP server-side applications. It uses modern PHP (~ PHP 8.1) and combines elements of OOP (Object Oriented Programming) and FP (Functional Programming).
Overview
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.
Features
- 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, checkboxes, radio buttons, dropdowns, 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 display validation errors next to the corresponding form fields.
- CSRF Protection: Built-in CSRF token generation and verification to enhance security.
- File Uploads: Handle file uploads with ease and integrate them seamlessly into your forms.
- Customization: Highly customizable rendering, theming, and extending capabilities.
- Compatibility: Works well with modern PHP applications and follows best practices.
Installation
You can install the AssegaiPHP Forms Library using Composer:
composer require assegaiphp/forms
Quick Start
-
Create a Form:
use Assegai\Forms\Form; $form = new Form('contact_form', 'POST', '/submit');
-
Add Form Fields:
$form->addText('name', 'Name')->required(); $form->addEmail('email', 'Email')->required()->email(); $form->addTextarea('message', 'Message')->required();
-
Process Form Submission:
if ($form->isSubmitted() && $form->isValid()) { // Process the form data $data = $form->getData(); // ... }
-
Render the Form:
echo $form->render();
For more detailed usage and customization options, please refer to the Documentation.
Contributing
We welcome contributions from the community! If you'd like to contribute to the AssegaiPHP Forms Library, please follow our Contribution Guidelines.
License
The AssegaiPHP Forms Library is open-source software licensed under the MIT License.