Articles tagged with: programming
Humor »
Here is a funny summary of the Bhagavad Gita (Hindi) for Computer Programmers / Developers.. Cheers !!
PHP »
< ?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”;
