<html> <head> <title>A Class with a Method</title> <body> <?php class first_class{ var $name; function sayHello(){ print "hi"; } } $obj1 = new first_class(); $obj1->sayHello(); ?> </body> </html>