Just for Quick copy past
Leave a CommentAuthor: Praveen Anaparthi
11+ years of IT industry experience holding a wide range of skill sets and roles with significant work on PHP, Node.js, Python, Ruby, Docker, React.js, Microsoft Azure, Azure DevOps, Windows PowerShell, Shell script, Jenkins, MongoDB, SQL, MySQL, Apache, Nginx. etc. It is my passion to learn new things and implement them as a practice. Aside from work, I like gardening and spending time with pets.
Below snippets will set the opacity of the elements and its children. selector { // IE 8 -ms-filter: “progid:DXImageTransform.Microsoft.Alpha(Opacity=50)”; // IE 5-7 filter: alpha(opacity=50); //…
Leave a CommentWhen the size of web page increases, it’s better to have a button to scroll to the top of the page with a single click.…
Leave a CommentSource from : http://php.net/manual/en/function.get-browser.php
Leave a CommentFunction 1 : array_rand Get a random variable in an array. $sites = array (“google.com”,”Bing”, “yahoo.com”, “php.net”, “apple.com”); $k = array_rand($sites); echo $sites[$k]; Function 2:…
Leave a CommentForcing 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 CommentBelow 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