Simple Calculator Using PHP
Submitted by jaredgwapo on Sunday, January 10, 2016 - 18:32.
Language
This is a simple Calculator that you can use in your project or systems. Just download the source code and follow the instructions below.
For more information and inquiries, feel free to comment below or email me at [email protected]. May this simple calculator may help you in your projects or systems.
DIRECTIONS
HTML CODE
PHP CODE
- <?php
- {
- $operator=$_REQUEST['operator'];
- if($operator=="+")
- {
- $add1 = $_REQUEST['fvalue'];
- $add2 = $_REQUEST['lvalue'];
- $res= $add1+$add2;
- }
- if($operator=="-")
- {
- $add1 = $_REQUEST['fvalue'];
- $add2 = $_REQUEST['lvalue'];
- $res= $add1-$add2;
- }
- if($operator=="*")
- {
- $add1 = $_REQUEST['fvalue'];
- $add2 = $_REQUEST['lvalue'];
- $res =$add1*$add2;
- }
- if($operator=="/")
- {
- $add1 = $_REQUEST['fvalue'];
- $add2 = $_REQUEST['lvalue'];
- $res= $add1/$add2;
- }
- if($_REQUEST['fvalue']==NULL && $_REQUEST['lvalue']==NULL)
- {
- echo "<script language=javascript> alert(\"Please Enter values.\");</script>";
- }
- else if($_REQUEST['fvalue']==NULL)
- {
- echo "<script language=javascript> alert(\"Please Enter First value.\");</script>";
- }
- else if($_REQUEST['lvalue']==NULL)
- {
- echo "<script language=javascript> alert(\"Please Enter second value.\");</script>";
- }
- }
- ?>
Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.
Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.
FOR YOUR OWN SAFETY, PLEASE:
1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.
Add new comment
- 2699 views