How To Make a Calculator in PHP simple way

SHARE:

PHP is the most famous language in the programming world and also 70% of websites created by PHP language because it is also server-side language.

So today’s tutorial is about how to Make a calculator program in PHP using switch case and Arithmetic operators in PHP.

This is something you can easily do by practicing basic arithmetic operations in PHP because I write this post for those people who are learning from basic.

it is very simple code or you can say it is like Calculator Demo... you can also read the following Posts.

 ajax in PHP  & Error Reporting in PHP 


Conditional statements are the set of commands used to perform different actions based on different
conditions. In PHP we have the following conditional statements for Making Calculator in PHP.


Create A Simple Calculator in PHP




How to Make a Calculator in PHP?


1. Open notepad and create a new file save as  "calculator.php" or any name as u like you can write

2. copy below Code and Paste to your file

3. open in the browser simply.


I also tell you about two methods of creating in which you can create a simple calculator with the help of programming Code.

1.Making a Calculator by if-else Condition 


========================================================================

this code is very simple for beginners because who could practice on to make an own good calculator

so it is just by if and else condition with the arithmetic operation. 

<?php $input1 = 10;$input2 = 17; $op = "-";  if ($op=="+"){      echo "Your Plus Marks = "; echo $input1 + $input2;    } 
elseif ($op=="-")
{     echo " Your Subtrator Marks = "; echo $input1 - $input2; }
 elseif ($op == "*"){ echo "Multiplation  marks = "; echo $input1 * $input2; }
 else if($op =="/"){echo "divion  marks = "; echo $input1 / $input2; }?>
====================================================================


2. Calculator program in PHP using switch case  


<?php $input1 = 10;$input2 = 15;$op = "/";
switch($op)      {      case '+':           echo "Your Result =";          echo $input1 + $input2 ; break;      case '-':          echo "Your Result = ";echo $input1 - $input2;           break;      case '*':           echo "Your Result = ";echo  $input1 * $input2;           break;      case '/':           echo "Your Result = ";echo  $input1 / $input2;           break;      default:             echo "default";                }
?>

========================================================================


PHP Script 




This code also in switch condition but this is in web form you can say the shape of styling calculator

<?php
$input1 = $_POST["num1"];
$input2 = $_POST["num2"];
$op = $_POST["operator"];
switch($op)
      {
      case '+':
           echo "Your Result =";
          echo $input1 + $input2 ;
break;
      case '-':
          echo "Your Result = ";
echo $input1 - $input2;
           break;
      case '*':
           echo "Your Result = ";
echo  $input1 * $input2;
           break;
      case '/':
           echo "Your Result = ";
echo  $input1 / $input2;
           break;
      default:
             echo "default";
                }

?>

If you have any Question you can ask me.


COMMENTS

Name

Blogging,15,C Language,3,How to,26,Make Money,11,SEO,27,Web Development,24,
ltr
item
Weblog Tricks - Helping You Succeed To Become an entrepreneur: How To Make a Calculator in PHP simple way
How To Make a Calculator in PHP simple way
How make a calculator program in php using switch case with basic calculator functions using switch case and simple calculator using in php Simple Calculator in PHP
https://4.bp.blogspot.com/--FYiLKqXGXs/WKP5NOdWuaI/AAAAAAAAAVA/7ChIHUHtMGEj_uzhrTF45mh-lKe41crxACLcB/s640/Presentation1.jpg
https://4.bp.blogspot.com/--FYiLKqXGXs/WKP5NOdWuaI/AAAAAAAAAVA/7ChIHUHtMGEj_uzhrTF45mh-lKe41crxACLcB/s72-c/Presentation1.jpg
Weblog Tricks - Helping You Succeed To Become an entrepreneur
https://weblogtrickss.blogspot.com/2017/02/create-simple-calculator-in-php.html
https://weblogtrickss.blogspot.com/
https://weblogtrickss.blogspot.com/
https://weblogtrickss.blogspot.com/2017/02/create-simple-calculator-in-php.html
true
3158682668530211189
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS CONTENT IS PREMIUM Please share to unlock Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy