Monthly Archives: September 2010

Construct a Sorted PHP Linked List

This is really a draft, but I somehow decided to post it. Here’s a simple linked list in PHP, where only the add() method is slightly different. When you have an item to add it’s placed on the “right” place … Continue reading

Posted in micro tutorial, PHP, web development | Tagged , , , , , , , , , , | 1 Comment

jQuery: Setting Up a Vector Path Fill Color

It’s quite unusual to think of the jQuery’s attr() method as a generic method that can only change basic attributes as value, style, etc. However attr() can change whatever DOM element attribute. In this case you may know that the … Continue reading

Posted in micro tutorial | Tagged , , , , , , , , , , , | Leave a comment

2xjQuery: Select a Selector

Selectors in jQuery If you’re familiar with jQuery you should already know what are selectors and how they work. However we’re used to get some DOM element with a specific selector, but actually sometimes you cannot select directly what you … Continue reading

Posted in javascript, micro tutorial | Tagged , , , , , , , , , , , , , , , , , , | 1 Comment

5 PHP String Functions You Need to Know

The Task First of all what we’d like to achieve? The task is to convert a string, most of the cases single word, by capitalize the first letter. In my case I’ve the world countries names all lower cased, while … Continue reading

Posted in micro tutorial, PHP | Tagged , , , , , , , , , , , , | 2 Comments

Looping Animation with JavaScript and Raphaël

Raphael is a popular JavaScript library helping you to manage vectors via SVG or VML in your browser. It is extremely helpful and very easy to learn and use. The interesting thing is that in the browser you can do … Continue reading

Posted in javascript, micro tutorial | Tagged , , , , , , , , , , , , , | Leave a comment