
PHP/MySQL / Code (page 10)
name = $name;
$this->color = $color;
}
function get_name() {
return $this->name;
}
function get_color() {
return $this->color;
}
}
$jets = new Plane("It's a small jet", "and it's black");
echo $jets->get_name();
echo "
";
echo $jets->get_color();
?>