VOOZH about

URL: https://www.geeksforgeeks.org/php/how-to-perform-arithmetic-operation-using-switch-case-in-php-through-html-form/

⇱ How to Perform Arithmetic Operation using Switch Case in PHP through HTML form ? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

How to Perform Arithmetic Operation using Switch Case in PHP through HTML form ?

Last Updated : 5 Jun, 2021

We are going to perform the basic arithmetic operations like- addition, subtraction, multiplication, and division using PHP. We are using HTML form to take the input values and choose an option to perform particular operation using Switch Case.

Arithmetic Operations are used to perform operations like addition, subtraction etc. on the values. To perform arithmetic operations on the data we need at least two values.

  • Addition: It performs the sum of given numbers.
  • Subtraction: It performs the difference of given numbers.
  • Multiplication: It performs the multiplication of given numbers.
  • Division: It performs the division of given numbers.

Example:

Addition = val + val2 + ... + valn
Example: add = 4 + 4 = 8

Subtraction = val - val2 - ... - valn
Example: sub = 4 - 4 = 0

Multiplication = val1 * val2 * ... * valn
Example: mul = 4 * 4 = 16

Division = val1 / val2
Example: mul = 4 / 4 = 1

Program 1:

Output:

Sum: 45
Diff: -15
Mul: 450
Div: 2

Using Switch Case: The switch statement is used to perform different actions based on different conditions.

Syntax:

switch (n) {
 case label1:
 code to be executed if n=label1;
 break;
 case label2:
 code to be executed if n=label2;
 break;
 case label3:
 code to be executed if n=label3;
 break;

 . . .
 
 case labeln:
 code to be executed if n=labellast;
 break;
 default:
 code to be executed if n is different from all labels;
}

Execution Steps:

  • Start XAMPP Server 
     
👁 Image
  • Open Notepad and type the below code and save the folder in path given in image 
     
👁 Image

Program 2:

Output: Open Web Browser and type

👁 Image
👁 Image
Addition
👁 Image
Subtraction
👁 Image
Multiplication
👁 Image
Division
Comment
Article Tags: