class Employees
{
var $empName="KOBE";
var $empNo="006";
function show_Emp()
{
echo $this->empName,"<br>" .$this->empNo;
return;
}
}
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Demo</title>
</head>
<body>
<?php
include_once("employees.php");
$str="Approlife";
echo "<b>".$str."</b>" ,' Hello World';
/*$a[0]="first";
$a[1]="second";
$a[2]="third";
echo "<br>".$a[2];
echo '<br>'.count($a);*/
$myphonebook=array("kkkk"=>"1111","jjjj"=>"2222","aaaaa"=>"33333");
echo "<br>"."$myphonebook[jjjj]"."<br>";
$emp=new Employees;
echo "<br>".$emp->show_Emp();
?>
<hr align="left" color="#FF0000" width="200"/>
</body>
</html>