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