Lesson 15 - Form framework for PHP - Testing and finishing the form
In the last lesson, Form framework in PHP - Finishing the basic concept, we finished the base of the form framework. In today's tutorial, we'll test it all out and extend it with methods for saving and retrieving data.
Testing
Let's test the form out on the same example from when we tested the InputBox. Thanks to the form framework, we are now able to reduce the amount of code significantly. We're able to get the same results with the following bit of code:
$form = new Form('test-form'); $form->addTextBox('name', 'Name', true) ->addMinLengthRule(3); $form->addEmailBox('email', 'Email', true) ->setText('@'); $form->addPasswordBox('password', 'Password'); $form->addTextBox('social_security_number', 'Social security number') ->addPatternRule('[0-9]{6}\/[0-9]{4}'); $form->addButton('send', 'Send');
I added text to the email field just to show the setText() method in action (the "@" sign really doesn't have to be there).
Next, we'll render the form by calling the render() method:
<?= $form->render() ?>
The result is very impressive:
Here's what it looks like when we narrow the window to the size of a cell phone screen:
We'll test the server-side validations at the end of the lesson.
Retrieving data and filling data in
Filling the form in or retrieving its data manually is absolutely pointless and laborious work, which can be fully automatized.
...End of the preview...
Continue further
You've come here and that's great! We believe that the first lessons showed you something new and useful
Do you want to continue the course? Go to the premium section.
Buy this course
Before buying this article, you have to buy the previous one
This article is licensed: Premium, by buying this article, you agree with the terms of use.
- Unlimited and permanent access to individual lessons.
- High quality IT knowledge.
- Skills to help you get your dream and well-paid job.
Article description
Requested article covers this content:
In this tutorial, we'll test the form framework out in PHP. Then, we'll add methods for getting and settings a form's data and finish up with it.
You gain credits by supporting our network. This is done by sending a helpful amount of money to support the site, or by creating content for the network.