Cool Notification / Alert Message Boxes using CSS

Here I am sharing nice way of displaying alert/notification message boxes to visitors View Demo Buy & Download Message Boxes Collections @ 1$ Support After your payment successful, you will get an email with messageboxes.zip attached sent by itzurkarthi@gmail.com within 1 hour. If you are not seeing it, check the … Read more

Call to action button on your own using CSS

Designing call to action buttons into web interfaces requires some forethought and planning; it has to be part of your prototyping and information architecture processes in order for them to work well. In this section, we’ll discuss some design techniques for call to action buttons. here is the css code … Read more

Fetch / embed videos from url using PHP and Jquery

Please check my new updated post – Facebook Style embed videos from url – http://w3lessons.info/2013/05/25/facebook-style-youtube-video-vimeo-video-soundcloud-audio-url-expander-with-jquery-php/ In our daily life web developers are facing problem like how to embed videos from url. Here I am going to share How to fetch videos from major sites like youtube, vimeo, dailymotion, yahoom google , … 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

How to find the text in string using PHP

Hi guys here I am going to share how to find a text inside a particular given string by using PHP here is the code $string_t0_search = “PHP”; $paragraph = “I love writing PHP code.”; if(strstr($paragraph,$string_to_search)) { echo “found it.”; } else { echo “not found.”; } strstr() is php … Read more

Jquery Vs Mootools – Which one is better?

The Stats jQuery Core MooTools Core Library Size 55.9K 64.3K Features License MIT & GPL MIT DOM Utilites yes yes Animation yes yes Event Handling yes yes CSS3 Selectors yes (a subset) yes (a subset) Ajax yes yes Native Extensions (excluding Element) about a dozen for Array, Object, and String about six … 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