Creating and Processing GET and POST Requests with Forms in CodeIgniter 4
27-02-2026 - Andrés Cruz
We are going to show the process to send forms in CodeIgniter 4, from the creation of routes, controller, functions and of course, the process of the request or request of our user.
Create a list or table view in CodeIgniter 4 styled in Bootstrap 4 or 5
24-02-2026 - Andrés Cruz
We are going to know how we can create the list of records in a table using CodeIgniter 4, this list will be paginated and it is a fundamental element for our CRUD.
The .serialize() method provided by jQuery allows you to create a text string in URL-encoded notation; The serialize method is perfect for working with forms and sending data to PHP via Ajax.
How use the pattern attribute to validate forms using Regular Expressions in HTML5
09-12-2025 - Andrés Cruz
With the pattern attribute we can perform validations without using JavaScript libraries and without using external libraries, specifically regular expressions as we will see below; We will see how to validate, telephone numbers, ips, emails, texts, numbers,
What are they, and how to create a form with Django 6?
05-12-2025 - Andrés Cruz
Learn how to create and manage forms in Django step by step. We cover everything from the Form and ModelForm classes to data validation and CSRF protection.
This entry explains the formAction applicable to submit type inputs overriding the action attribute of the form. This entry explains the formAction applicable to input types submit overriding the action attribute of the form.
Upload or upload files in Laravel Inertia with Vue
16-11-2025 - Andrés Cruz
We will see the process of uploading or loading files in Laravel Inertia, which includes an implementation that shows how to implement drag and drop uploads.