Articles tagged with: programming
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”;
