Today let us learn about novalidate and formnovalidate attributes of HTML5 form.
In this video tutorial I’m taking 2 input fields and making one input field as required. Also take 2 submit buttons, with one validating the user entered data and the other one bypassing the validation rules set.
Why would we ever need novalidation for forms ? Sometimes we enter a lengthy form and submit, but due to some validation mistakes all our entries gets erased, and the user may not have the patience to re-enter everything from beginning. He may skip it altogether. To avoid that, you can build an interface wherein user can save her data first and then can submit it after reviewing it. In such a situation we can make use of a temporary database table to store user entered information and display for review with appropriate messages to correct the wrong inputs – user can correct them and Submit.
< !DOCTYPE HTML>
pattern and title attribute: HTML5
< !DOCTYPE HTML>
pattern and title attribute: HTML5
Here in the first input field, we’re restricting the input to only lower case and upper case alphabets. To the second input field, we’re restricting it to only 2 digits from 0 to 9.
Note:^ symbol specifies the beginning and the $ symbol specifies the end of the input value.
You can share any simple/small to complex/big regular expression knowledge in the comment section below. Your time and effort is highly appreciated. Your knowledge and inputs will surely be helpful to many people around the world. Comment section is all yours :-)
Note: To make autocomplete feature to work 1. Turn ON the autocomplete feature for form, in your browser. 2. Make sure to name all your input fields. Without naming, autocomplete feature may not work. 3. If not specified, tags will inherit autocomplete feature from its parent tag. If not turned OFF, browser will have autocomplete turned ON by default, once it is enabled in browser settings.
autocomplete=”off” Turn off autocomplete to password fields, debit card, credit card, account number fields.
Note: You can also apply autofocus to the buttons, so that user can directly hit OK or CANCEL by pressing Enter key of their keyboard! – whichever is most desired.
Controlling Access with public, private and protected access modifiers. These access specifiers can be used on both variables/attributes and methods.
In this video tutorial, we’ll demonstrate it using attributes.
Access Specifiers: 1. public 2. private 3. protected
Class With Attributes
1
2
3
4
5
6
7
8
9
< ?php
class container
{
var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40;
}
?>
< ?php class container { var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40; }
?>
var $a is similar to writing public $a
We shall extend class container to another class called contains. Extending class is an inheritance property, and we shall discuss inheritance in another article. For now, know that, with extends keyword, all the properties and methods with public / protected access are inherited.
Extends
1
2
3
4
5
6
7
8
9
10
11
12
13
< ?php
class container
{
var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40;
}
class contains extends container
{
}
?>
< ?php class container { var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40; } class contains extends container { }
?>
Here, contents of class container is extended by class contains.
Object of class container
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
< ?php
class container
{
var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40;
}
class contains extends container
{
}
$obj1 = new container();
echo $obj1->a;
echo $obj1->b;
?>
< ?php class container { var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40; } class contains extends container { } $obj1 = new container(); echo $obj1->a; echo $obj1->b;
?>
This outputs: 10 and 20 respectively.
Object of class contains
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
< ?php
class container
{
var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40;
}
class contains extends container
{
}
$obj2 = new contains();
echo $obj2->a;
echo $obj2->b;
?>
< ?php class container { var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40; } class contains extends container { } $obj2 = new contains(); echo $obj2->a; echo $obj2->b;
?>
This outputs: 10 and 20 respectively. i.e., public attributes are inherited
Accessing private / protected attributes outside class
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
< ?php
class container
{
var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40;
}
class contains extends container
{
}
$obj1 = new container();
echo $obj1->c;
echo $obj1->d;
?>
< ?php class container { var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40; } class contains extends container { } $obj1 = new container(); echo $obj1->c; echo $obj1->d;
?>
It through’s error, since you cannot access, private and protected variables/attributes outside the class.
Now lets check if private and protected variables are actually inherited:
Inheriting private attribute
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
< ?php
class container
{
var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40;
}
class contains extends container
{
function __construct()
{
echo $this->c;
}
}
$obj1 = new contains();
?>
< ?php class container { var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40; } class contains extends container { function __construct()
{
echo $this->c;
} } $obj1 = new contains();
?>
This through’s error, because $c is not inherited to class contains and thus not present inside class contains. Which means, private variables and methods cannot be inherited.
Inheriting protected attribute
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
< ?php
class container
{
var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40;
}
class contains extends container
{
function __construct()
{
echo $this->d;
}
}
$obj1 = new contains();
?>
< ?php class container { var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40; } class contains extends container { function __construct()
{
echo $this->d;
} } $obj1 = new contains();
?>
Output’s 40. This means, protected variables and methods are inherited.
Conclusion public attributes and methods are inherited and can be accessed outside the class. private attributes and methods cannot be inherited and cannot be accessed outside the class. protected attributes and methods can be inherited but cannot be accessed outside the class.