Forcing visitors to use SSL can be accomplished through your .htaccess file using mod_rewrite module. we have to force browsers to use secure connection only…
Leave a CommentTutorials / Programming tips Posts
Below is the simple PHP function to check for valid email address. function is_valid_email($email) { if(preg_match(“/[a-zA-Z0-9_-.+]+@[a-zA-Z0-9-]+.[a-zA-Z]+/”, $email) > 0) return true; else return false; }
Leave a CommentBelow is the list of safe fonts for websites font-family: Arial, Helvetica, sans-serif; font-family: ‘Arial Black’, Gadget, sans-serif; font-family: ‘Bookman Old Style’, serif; font-family: ‘Comic…
Leave a Comment