Program 1
<html>
<head><title>Demo</title></head>
<body>
<center>
<?php
class First
{
protected static $username="Vikas Sharma";
function display()
{
echo static::$username;
}
}
class Second extends First
{
protected static $username="Rahul Gupta";
}
$f=new First();
$f->display();
$s=new Second();
$s->display();
?>
</center>
</body>
</html>