Ann
Hello everyone
I was either Taichung A
Since many people do not understand object-oriented
I'll give an example of good

#New items
class hello
  {
  #New items in the variable
  var $word;
  #New items in the function
  function say()
    {
    #Call this object in the word
    echo  "HELLO...".$this->word;
    }
  }
#NEW a new object
$me = new hello();
#Put values ​​into
$me->word = "name";
#Call object in the program
$me->say();

This allows the
There are no easy A .... Of course, there are more complex, but basically this