| Here is a Simple PHP function to check valid Email Addresses. The function accepts Email string trims it check whether it satisfies the Email format. if it satisfies then return TRUE else FALSE. Scroll down for the function. | |
| function validateEmail( $strEmail ){ $strEmail=trim($strEmail); if( $strEmail!="" ){ $pattern="/^([a-z0-9_\.]+)@([a-z0-9_\-\.]+)\.([a-z]{2,3})$/i"; if( preg_match($pattern,$strEmail,$match) ){ return TRUE; }else FALSE; }else return TRUE; } How to use this function? $myEmail=$_POST['txt_email']; if validateEmail( $myEmail ) echo("VALID EMAIL"); else echo("YOU ENTERED AN INVALID EMAIL."); Hope thi shelp someone... :) | |
Steps in adding Link to this page to your blogger posts Links to your page can improve your page rank. So it is a good option to add HTML code for linking to your web page. So that reader can copy and paste it on their web page. if another website links to your web page, this is considered an external link to your website. External links to your website are the most important source of ranking power and in SEO terminology it is considered as third party ranking vote for your page.

Comments
Post a Comment