Home » Archive

Articles tagged with: programming

Humor »

[12 Nov 2010 | 2 Comments | 405 views]

Here is a funny summary of the Bhagavad Gita (Hindi) for Computer Programmers / Developers.. Cheers !!

PHP »

[19 Aug 2007 | One Comment | 153 views]

< ?php /* creating a class with two variables and a function */ class abc { var $name = "Ram"; var $surname = "Sharma"; function greet() { echo “Welcome! $this->name $this->surname”; } } class xyz extends abc { var $middlename = “Kumar”;