Choose a file to view:
controller.php
index.php
model.php
view.php
or go back to the demo
<?php include_once "model.php"; include_once "view.php"; include_once "controller.php"; ?> <html> <head> <title></title> </head> <body> <?php $costController = new CostController(); if(isset($_POST['submit'])) { $costController->setCost($_POST); } echo $costController->GenDisplay(); ?> <p><a href="../index.php">[Back to demos home]</a> <a href="fileView.php">[View source code]</a></p> </body> </html>