PHP Classes

File: README.md

Recommend this page to a friend!
  Classes of Mr. Dharmendra Kumar   Simple Calculations   README.md   Download  
File: README.md
Role: Documentation
Content type: text/markdown
Description: Read me
Class: Simple Calculations
Perform very simple math calculations
Author: By
Last change:
Date: 4 years ago
Size: 412 bytes
 

Contents

Class file image Download

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;