Thursday, February 15, 2018

Simple How To Put Email Validation In HTML 5

In Below Code Is About Put Validation In HTML 5

required="required"

 pattern="\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*"

title="please enter proper email"

No comments:

Post a Comment

Generate Even Numbers in a Range In PHP.

$start = 1; $end = 20; for ($i = $start; $i <= $end; $i++) {     if ($i % 2 == 0) {         echo $i . " is even.<br>";   ...