Image Shadow using CSS

Here I am going to tell how to add a shadow below any image by using simple CSS and html.  Below is the image how it looks finally.   Here is the CSS code to get the Drop Shadow effect using a single image View Demo Download Please don’t forget … Read more

Free Elegant Table Designs Using CSS

Hi guys, Today I am going to tell how to create a nice table designs using CSS. Some of the styles are Box Style using CSS Zebra Style using Jquery One Column Style using CSS Simple Table Design using CSS Here is the css code View Demo Download Please don’t … Read more

Top 5 tips to speed up your wordpress blog

1. Use caching Install the WP Super Cache plugin and enable the Gzip option. This will load only the appropriate cached content to visitors rather than loading every single script and element of your WordPress site. Your bandwidth is greatly reduced and you avoid your site going down during traffic spikes (and … Read more

Removing last comma in a string – PHP

Hi guys, Here I am gonna share how to remove the last comma in a string by using php rtrim function. The rtrim() function will remove whitespaces or other predefined character from the right side of a string. Syntax rtrim(string,charlist) Example : $text_with_comma = “1,2,3,4,5,6,7,”; $removed = rtrim($text_with_comma, ‘,’); Output … Read more

Codeigniter Tips and Tricks

Hi friends, Codeigniter is my all time favorite php framework in my life. So here I want to share few codeigniter tips and tricks to you. feel free to ask any doubts about this tips. CodeIgniter is very easy me to install. It requires PHP version 4.3.2 or newer and … Read more

New HTML5 Features to Improve your Web Form

HTML5 introduces numerous new options to create more functional web forms. In this article, I’ll show you exciting new HTML5 features to improve your forms and make them more functional and user-friendly. Please note that HTML5 is an emerging technique. These examples are not intended for use on a production … 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