PHP Classes

File: example_compcalc.php

Recommend this page to a friend!
  Classes of Bob   CompCalc   example_compcalc.php   Download  
File: example_compcalc.php
Role: Example script
Content type: text/plain
Description: example usage
Class: CompCalc
Calculate the return of investment, saving or loan
Author: By
Last change:
Date: 12 years ago
Size: 123 bytes
 

Contents

Class file image Download
<?php
require("compcalc.php");

$c=new CompCalc();
$results=$c->inv_calculate(15, 1000, 10, 50, 100);
print_r($results);
?>