$item = new Items;
$item -> setName("Book");
$book = $item->getName();
$item -> setName("Pencil");
$Pencil = $item->getName();
class Items
{
var $item;
function setName($newname)
{
$this->title=$newname;
}
function getName()
{
return $this->title;
}
}
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment