Ratings | | Unique User Downloads | | Download Rankings |
Not yet rated by the users | | Total: 49 | | All time: 10,249 This week: 245 |
|
Description | | Author |
This package can be used to perform very simple math calculations.
It provides several functions that can perform basic math calculations with two numbers.
Currently it can perform addition, subtraction, multiplication and division operations. | |
|
|
Innovation award
Nominee: 1x |
|
Details
SimpleCalculations
Simple Calculations is a PHP class that provide some usefull calculations
How to use
<?php
require_once("SimpleCalculations.php");
$obj=new SimpleCalculations;
$total=$obj->SimpleAdd(8,9); // any number
echo $total;
$min=$obj->SimpleMin(8,9); // any number
echo $min;
$mul=$obj->SimpleMul(8,9); // any number
echo $mul;
$div=$obj->SimpleDiv(8,9); // any number
echo $div;
|
Applications that use this package |
|
No pages of applications that use this class were specified.
If you know an application of this package, send a message to the author to add a link here.