#container { width: 400px; /* here you put the width that you need */ height: 200px; /* here you put the height that you need…
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.
/* external links */ a[href^=”http://”] { padding-right: 13px; background: url(‘external.gif’) no-repeat center right; } /* emails */ a[href^=”mailto:”] { padding-right: 20px; background: url(’email.png’) no-repeat center…
Leave a Comment#container { -webkit-border-radius: 4px 3px 6px 10px; -moz-border-radius: 4px 3px 6px 10px; -o-border-radius: 4px 3px 6px 10px; border-radius: 4px 3px 6px 10px; } /* alternative…
Leave a Commentbody { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
Leave a CommentWordPress is built upon a collection of powerful core APIs. You can actually load the core APIs into any PHP application, just like any other…
2 CommentsWe are going to discuss how to upload files to the remote server in CodeIgniter using CI’s FTP library. This library has limitations – SFTP…
4 CommentsIn this tutorial I would like to show you how easy to implement google like search auto complete text box with PHP, jQuery and MySql.…
1 CommentYou can use the hidden,visible selector: The hidden selector: // Matches all elements that are hidden $(‘#myDiv’).is(‘:hidden’) The visible selector: // Matches all elements that…
Leave a CommentSome of the inspiring Quotes of Bharat Ratna Dr. APJ Abdul Kalam (missile man). 1) If you salute your duty, you need not salute anybody.…
Leave a CommentTraits are one of the most powerful feature introduced in PHP 5.4. It allow us to write maximum reusable code. Traits are like Abstract class…
Leave a CommentHey we can easily get names of all modules compiled and loaded in the PHP using PHP’s built-in function called get_loaded_extensions(). This function returns the…
1 CommentThe Collection class in Laravel is really awesome. In Laravel, Eloquent returns result in the collection object. The class contains a lot of handy methods…
Leave a CommentSome browsers like IE doesn’t allow cross-domain fonts by default – unless you set a Access-Control-Allow-Origin header to the font. cross-domain fonts mean fonts that…
1 CommentThe Request facade will grant you access to the current request that is bound in the container.Remember, if you are in a namespace, you will…
Leave a CommentSometimes you may want send the rendered view in the ajax response instead of showing on the browser. To return html in the ajax response…
2 Comments