Choose a file to view:
controller.php
index.php
model.php
view.php
or go back to the demo
<?php class CostModel { // Maintains the data but //does not know how to display it private $fee; //$ per hour public function __construct() { $fee = 0; } public function set($basefee,$projectType,$duration) { switch($projectType) { case 'small': $this->fee = $basefee * 1.0; break; case 'medium': $this->fee = $basefee * 1.5; break; case 'large': $this->fee = $basefee * 2.0; break; default: $this->fee = $basefee * 1.2; } $this->fee *= $duration; } public function get() { return $this->fee ; } } ?>