I started recently object oriented.Here is my code just as it is in tutorial. But it is not working.Although there is not error in syntax.
test.php
require("cls.php");
$objDemo = new Demo();
$objDemo->name = 'Steve';
echo "one";
cls.php
<?php
class Demo{
public $name;
function sayHello() {
print "Hello $this->name!";
}
}
?>
Thanks in Advance.