class CBooks {
var $name;
var $price;
function setPrice($pr) {
$this->price = $pr;
}
function getPrice() {
echo $this->price . "<br />";
}
function setName($nm) {
$this->title = $nm;
}
function getName() {
echo $this->title . "<br />";
}
}
$obj = new CBooks();
$obj->setName("PHP Programming");
$obj->setPrice(35);
$obj->getName();
$obj->getPrice();
/*
run:
PHP Programming
35
*/