icrazybrownie.blogspot.com is a platform that provides you a bunch of information of Software Development. Gives you an ideas about Programming Language,Technology and many more.Happy Coding
Phone Number Validation Using preg_match() Below code shows validation of Phone Number 1)Checking whether user input (Phone Number) contains an alphabet in Phone Number <?php $mobile_no="123fdgdg890"; if(preg_match("/[a-z][A-Z]/i", $mobile_no)) { echo "Invalid Phone Number!"; }else{ echo "Valid Phone Number!"; } ?> Output :Invalid Phone Number! Syntax preg_match("/[a-z][A-Z]/i", $mobile_no) The above syntax will verify whether given phone number is well-formed or not.if it is not, it will show an error message. The preg_match() function helps to find whether a given variable is valid or not. 2 )Checking whether user input (Phone Number) contains 10 digits in Phone Number <?php...
How to change the background color using JavaScript? 1. To Change the entire web page background color use below code document.body.style.backgroundColor ="#000" 2. Change the background color of an element using ID <p id="MyParagraph">Hiiii..How are you?</p> <script type="text/javascript"> $(window).on("load", function() { document.getElementById("MyParagraph").style.backgroundColor="red"; }); </script> ...
Comments
Post a Comment