Get up to 80 % extra points for free! More info:

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:

Generating forms automatically in PHP

Here's what it looks like when we narrow the window to the size of a cell phone screen:

Responsive form in PHP

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 will gain knowledge worth hundreds of thousands for a few crowns

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

Buy all currently available lessons with exercise submitting and other features for just $11.70
Current account balance $0
By buying this package, you'll have access to all 23 articles (23 lessons) in 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.

What will you get from us in the next lessons?
  • 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.

Article has been written for you by David Capka Hartinger
Avatar
The author is a programmer, who likes web technologies and being the lead/chief article writer at ICT.social. He shares his knowledge with the community and is always looking to improve. He believes that anyone can do what they set their mind to.
Unicorn university David learned IT at the Unicorn University - a prestigious college providing education on IT and economics.
Activities