PHP and htaccess tips and tricks

17 useful htaccess tips and tricks – http://www.queness.com/post/5421/17-useful-htaccess-tricks-and-tips How to get all social media members count by using php Feedburner Twitter Facebook Delicious It grab the total number of twitter followers, feedburner subscribers and also delicious bookmarks of your account/website. 1 2 3 4 5 6 7 8 9 10 11 … Read more

Simple tips to make your JQuery Faster

1) Wherever possible, use an ID selector This one allow is probably the most important change I’ve done to the way I code jQuery. It’s pretty easy and well, convenient, to select elements based on their class: 1 $(‘div.submitbutton’); However, doing so means that jQuery will have to traverse the … Read more

Tips to Create a Static Div

Create the div First of all, you will need to create the actual div layer. Here’s an example of one: 1 2 3 <div id=”box”>     <img src=”notice.jpg” /> </div> You can put this code at any point in your page since you will be using CSS to set its absolute … Read more

Get domain favicon using PHP and Google

These days, many websites or webapps are using favicons from other websites. Displaying a favicon on your own site is pretty easy using Google and some PHP. function get_favicon($url){ $url = str_replace(“http://”,”,$url); return “http://www.google.com/s2/favicons?domain=”.$url; }

5 new techniques every web developer should know

Web developers always have to update their knowledges and learn new technologies if they want to stay tuned with today’s coding. Today, I’m going to show you 5 recent web development techniques that you should definitely learn, or improve if you already know them. CSS3 media queries With the rise … Read more

One Page Sliding Portfolio Site Using jQuery

In this tutorial, I am gonna tell how to create an one page portfolio site using Jquery. One page sites are usually a great way to show your prospective clients how good you are at what you do. This one is no exception. Demo Url – https://speckyboy.com/how-to-build-a-sliding-one-page-portfolio-with-jquery/ Download Link – https://speckyboy.com/how-to-build-a-sliding-one-page-portfolio-with-jquery/   … Read more

Useful Codeigniter Tutorials and Resources – Part I

CodeIgniter is a powerful framework that lets you create web apps very simply and elegantly. It’s an open source PHP framework with a very small footprint, built for PHP coders who need a simple and elegant toolkit to create full-featured web applications. Cool, that sounds great, so how do you get … Read more

Top 10 htaccess tips and tricks to prevent your wordpress site from hackers

htaccess Tutorials

A .htaccess (hypertext access) file is the common name of a directory-level configuration file which allows decentralised management of web server configuration. A .htaccess file is always added to the root directory, it can override many other configuration settings which includes server’s global configuration, content type and character set. A … Read more

Top 5 Useful and Free Downloadable Web Design Books

I would like to share Top 5 Web Design eBooks links that is available for FREE!. HTML5 is the latest trend in the web design and everyone converting their old templates from DHTML to HTML5. Below 5 Web Design ebooks going to useful for people who wanted to Learn more … Read more

Sliding Notifications Using Jquery

SlideNote is a customizable, flexible jQuery plugin that makes it easy to display sliding notifications on your website or in your web application. SlideNote is compatible with jQuery 1.4.4 and current versions of major browsers. IE8 is the only version of Internet Explorer that is officially supported. How To Use … Read more