Create Custom Google +1 Button
Social network by internet giant is “Google+” getting popular exponentially and of course they already have a huge customer database and all they have to do is to promote this new product among them.However people know the fact that Google+ is very special kind of social network with very unique features.   In parallel to…

PHP Recursion and recursive routines
Recursion and recursive routines is a bit more complicated, it can be defined as a regular function that calls itself.   Learning when and how to apply recursion is probably a lot more difficult than just learning what recursion is? and being able to explain recursion effectively in an interview situation is even more difficult… (20 comments)

ACID (Atomicity Consistency Isolation Durability) Model of database
ACID(Atomicity Consistency Isolation Durability) is a set of properties that guarantee that database transactions are processed reliably. In the context of databases, a single logical operation on the data is called a transaction.   Atomicity Atomicity is an all-or-none proposition. Modifications on the data in the database either fail or succeed. Each transaction is said… (10 comments)