PHP Conditional Statements for Decision Making Logics

undefined
 
CHAPTER -6
 
P
H
P
 
C
O
N
D
I
T
I
O
N
A
L
 
S
T
A
T
E
M
E
N
T
S
 
MOHAMED FAKRUDEEN, PGT-COMPUTER SCIENCE
MOHAMED FAKRUDEEN, PGT-COMPUTER SCIENCE
SHAMROCK MATRIC. HR. SEC. SCHOOL. MOGAPPAIR, CHENNAI-107
SHAMROCK MATRIC. HR. SEC. SCHOOL. MOGAPPAIR, CHENNAI-107
 
Padasalai
 
Learning Objectives
 
To understand the importance of
conditional statement
To know different type of conditional
statements  in PHP
To know the basic fundamental logic
creation using conditional statement
 
PHP conditional statement
 
Conditional statements are useful for writing
decision making logics.
It is most important feature of many
programming languages , including PHP.
They are implemented by the following
types:
if statement
if…else statement
if…elseif….else statement
switch statement
 
If statement in PHP
 
    If statement executes a statement or a
group of   statements if a specific
condition is satisfied as per the user
expectation
 
SYNTAX:
 
if( condition )
{
  Execute statement(s) if condition is true;
}
 
Example:
 
<?php
$Pass_Mark=35;
$Student_Mark=70;
if ($Student_Mark>=$Pass_Mark){
echo “The Student is Eligible for the
promotion”;
}?>
 
 
 
 
 
 
 
If else statement in PHP
 
 If statement executes a statement or a
group  of statement 
 
if a specific condition
is satisfied by the user expectation.
When the condition gets false (fail) the
block is executed.
 
SYNTAX:
 
If (condition)
{
   Execute statement (s)if condition is true;
}
Else
{
Execute statement(s) if condition is false;
}
 
Example:
 
<?php
$Pass_Mark=35;
$Student_Mark=70;
if($Student_Mark>=$Pass_Mark){
echo “The Student is Eligible for the promotion”;
}
else{
echo “The Student is not Eligible for the
promotion”;
}?>
 
If elseif else statement in PHP:
 
 If -   elseif- else statement is a
combination of if-else statement.
More than one statement can execute
the condition based on user needs.
 
SYNTAX
 
If( 1
st
 condition)
{
  Execute statement(s )if condition is true;
}
elseif( 2
nd
 condition )
{
Execute statement(s) if 2
nd
 condition is true;
}
Else
{
Execute statement(s) if  both conditions are false;
}
 
Example:
 
<?php
$Pass_Mark=35;
$first_class=60;
$Student_Mark=70;
If($Student_Mark>=$first_class){
echo “The Student is eligible for the promotion with first
class”;
}
elseif ($Student_Mark>=$Pass_Mark){
echo “The Student is eligible for the promotion”;
}
else{
echo “The Student is not eligible for the promotion”;
}?>
 
 
 
Switch case:
 
The switch statement is used to perform
different actions based  on different
conditions.
 
SYNTAX:
 
switch (n) {
       case label 1:
          code to be executed if n=label 1;
          break;
        case label 2:
           code to be executed if n=label 2;
           break;
        case label 3:
           code to be executed if n=label 3;
           break;
         default:
            code to be executed if n is different from all labels;
      }
 
EXAMPLE:
 
 
   <?php
   $favcolor = “red” ;
   switch ($favcolor) {
       case “red” :
           echo “Your favorite color is red!” ;
           break;
       case “blue” ;
           echo “Your favorite color is blue!” ;
           break;
       case “green” ;
           echo “ Your favorite color is green!” ;
           break ;
        default:
             echo “ Your favorite color is neither red , blue, nor green!” ;
     }
     ?>
 
POINTS TO REMEMBER
 
The if statement contains boolean
expression inside brackets followed by a
single or multi line code block.
if –else Statement also provides for a
second part to the if statement , that is
else. The else statement must follow if or
else if statement.
else if statement The ‘if’ statement can also
follow an “else” statement, if you want to
check for another condition in the else part.
 
NEXT TOPIC:
NEXT TOPIC:
L
O
O
P
I
N
G
 
S
T
R
U
C
T
U
R
E
Slide Note
Embed
Share

Conditional statements in PHP are essential for decision-making logics, allowing the execution of specific code blocks based on defined conditions. This article covers different types of conditional statements like if, if-else, if-elseif-else, and switch in PHP, along with syntax examples and their importance in programming.

  • PHP
  • Conditional Statements
  • Decision Making
  • Logic Creation

Uploaded on Sep 12, 2024 | 0 Views


Download Presentation

Please find below an Image/Link to download the presentation.

The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author. Download presentation by click this link. If you encounter any issues during the download, it is possible that the publisher has removed the file from their server.

E N D

Presentation Transcript


  1. Padasalai PHP CONDITIONAL STATEMENTS PHP CONDITIONAL STATEMENTS CHAPTER -6 MOHAMED FAKRUDEEN, PGT-COMPUTER SCIENCE SHAMROCK MATRIC. HR. SEC. SCHOOL. MOGAPPAIR, CHENNAI-107

  2. Learning Objectives To understand the importance of conditional statement To know different type of conditional statements in PHP To know the basic fundamental logic creation using conditional statement

  3. PHP conditional statement Conditional statements are useful for writing decision making logics. It is most important feature of many programming languages , including PHP. They are implemented by the following types: if statement if else statement if elseif .else statement switch statement

  4. If statement in PHP If statement executes a statement or a group of statements if a specific condition is satisfied as per the user expectation

  5. SYNTAX: if( condition ) { Execute statement(s) if condition is true; }

  6. Example: <?php $Pass_Mark=35; $Student_Mark=70; if ($Student_Mark>=$Pass_Mark){ echo The Student is Eligible for the promotion ; }?>

  7. If else statement in PHP If statement executes a statement or a group of statement if a specific condition is satisfied by the user expectation. When the condition gets false (fail) the block is executed.

  8. SYNTAX: If (condition) { Execute statement (s)if condition is true; } Else { Execute statement(s) if condition is false; }

  9. Example: <?php $Pass_Mark=35; $Student_Mark=70; if($Student_Mark>=$Pass_Mark){ echo The Student is Eligible for the promotion ; } else{ echo The Student is not Eligible for the promotion ; }?>

  10. If elseif else statement in PHP: If - elseif- else statement is a combination of if-else statement. More than one statement can execute the condition based on user needs.

  11. SYNTAX If( 1st condition) { Execute statement(s )if condition is true; } elseif( 2nd condition ) { Execute statement(s) if 2nd condition is true; } Else { Execute statement(s) if both conditions are false; }

  12. Example: <?php $Pass_Mark=35; $first_class=60; $Student_Mark=70; If($Student_Mark>=$first_class){ echo The Student is eligible for the promotion with first class ; } elseif ($Student_Mark>=$Pass_Mark){ echo The Student is eligible for the promotion ; } else{ echo The Student is not eligible for the promotion ; }?>

  13. Switch case: The switch statement is used to perform different actions based on different conditions.

  14. SYNTAX: switch (n) { case label 1: code to be executed if n=label 1; break; case label 2: code to be executed if n=label 2; break; case label 3: code to be executed if n=label 3; break; default: code to be executed if n is different from all labels; }

  15. EXAMPLE: <?php $favcolor = red ; switch ($favcolor) { case red : echo Your favorite color is red! ; break; case blue ; echo Your favorite color is blue! ; break; case green ; echo Your favorite color is green! ; break ; default: echo Your favorite color is neither red , blue, nor green! ; } ?>

  16. POINTS TO REMEMBER The if statement contains boolean expression inside brackets followed by a single or multi line code block. if else Statement also provides for a second part to the if statement , that is else. The else statement must follow if or else if statement. else if statement The if statement can also follow an else statement, if you want to check for another condition in the else part.

  17. NEXT TOPIC: NEXT TOPIC: LOOPING STRUCTURE LOOPING STRUCTURE

More Related Content

giItT1WQy@!-/#giItT1WQy@!-/#giItT1WQy@!-/#giItT1WQy@!-/#giItT1WQy@!-/#giItT1WQy@!-/#giItT1WQy@!-/#