SlideShare una empresa de Scribd logo
1 de 19
WELCOME TO
OUR PRESENTATION
MEMBERS INTRO
 MD. IMRAN HOSSAIN {{ 183-25-691 }}
 MARUF ABDULLAH {{ 183-25-706 }}
 FAHIM FOYSAL KHAN {{ 183-25-692 }}
 SUMON HAZRA {{ 181-25-644 }}
 PRITOMA DEBNATH {{ 181-25-653 }}
WE ARE COVERING FOLLOWING TOPICS
 If...Else...Elseif Statements
 Switch Statement
 For Loop
 While Loop
 Do…While Loop
IF …. ELSE …. ELSEIF
 if statement executes some code if one condition
is true.
 if...else statement executes some code if a
condition is true and another code if that condition
is false.
 if...elseif....else statement executes different
codes for more than two conditions.
EXAMPLE OF IF...ELSEIF...ELSE
<?php
$date = date("D");
if($date == "Friday"){
echo "Have a nice weekend!";
} elseif($date == "Sunday"){
echo "Have a nice Sunday!";
} else{
echo "Have a nice day!";
}
?>
OUTPUT (IF…ELSE…ELSEIF)
SWITCH STATEMENT
 Switch Statement tests a variable against a
series of values.
 We can assume Switch Statement is an
alternative to the if…elseif…else statement.
EXAMPLE OF SWITCH STATEMENT
<?php
$date = date("D");
Switch ($date){
case "Friday ":
echo "Have a nice weekend";
break;
case "Sunday":
echo "Have a nice Sunday!";
break;
default:
echo "Have a Nice Day!";
break;
}
?>
OUTPUT (SWITCH STATEMENT)
FOR LOOP
 For loop executes a block of code a specified
number of times.
 Basic Syntax of For Loop:
for ( init counter; test counter; increment
counter) {
code to be executed;
}
EXAMPLE OF FOR LOOP
<?php
for ($x = 0; $x <= 10; $x++) {
echo "The number is: " . $x . "<br>";
}
?>
OUTPUT (FOR LOOP)
WHILE LOOP
 While loop executes a block of code as long
as the specified condition is true.
 Basic Syntax of While Loop:
while (condition is true) {
// code to be executed;
}
EXAMPLE OF WHILE LOOP
<?php
$x = 1;
while($x <= 5) {
echo "The number is: $x <br>";
$x++;
}
?>
OUTPUT (WHILE LOOP)
DO…WHILE LOOP
 Do...While loop will always execute the block
of code once, it will then check the condition,
and repeat the loop while the specified
condition is true.
 Basic syntax of Do…While Loop:
do {
// code to be executed;
} while (condition is true);
EXAMPLE OF DO…WHILE LOOP
<?php
$x = 6;
do {
echo "The number is: $x <br>";
$x++;
} while ($x <= 5);
?>
OUTPUT (DO …. WHILE LOOP)
THANK YOU

Más contenido relacionado

La actualidad más candente

La actualidad más candente (20)

Class 5 - PHP Strings
Class 5 - PHP StringsClass 5 - PHP Strings
Class 5 - PHP Strings
 
Oops concepts in php
Oops concepts in phpOops concepts in php
Oops concepts in php
 
Javascript functions
Javascript functionsJavascript functions
Javascript functions
 
Operators php
Operators phpOperators php
Operators php
 
Php array
Php arrayPhp array
Php array
 
Php forms
Php formsPhp forms
Php forms
 
Php basics
Php basicsPhp basics
Php basics
 
Looping statement
Looping statementLooping statement
Looping statement
 
JavaScript - Chapter 8 - Objects
 JavaScript - Chapter 8 - Objects JavaScript - Chapter 8 - Objects
JavaScript - Chapter 8 - Objects
 
C# loops
C# loopsC# loops
C# loops
 
Javascript
JavascriptJavascript
Javascript
 
What Is Php
What Is PhpWhat Is Php
What Is Php
 
FUNCTIONS IN c++ PPT
FUNCTIONS IN c++ PPTFUNCTIONS IN c++ PPT
FUNCTIONS IN c++ PPT
 
PHP Cookies and Sessions
PHP Cookies and SessionsPHP Cookies and Sessions
PHP Cookies and Sessions
 
Form Validation in JavaScript
Form Validation in JavaScriptForm Validation in JavaScript
Form Validation in JavaScript
 
Introduction to php
Introduction to phpIntroduction to php
Introduction to php
 
JavaScript Programming
JavaScript ProgrammingJavaScript Programming
JavaScript Programming
 
Network programming
Network programmingNetwork programming
Network programming
 
PHP - Introduction to Object Oriented Programming with PHP
PHP -  Introduction to  Object Oriented Programming with PHPPHP -  Introduction to  Object Oriented Programming with PHP
PHP - Introduction to Object Oriented Programming with PHP
 
PHP - DataType,Variable,Constant,Operators,Array,Include and require
PHP - DataType,Variable,Constant,Operators,Array,Include and requirePHP - DataType,Variable,Constant,Operators,Array,Include and require
PHP - DataType,Variable,Constant,Operators,Array,Include and require
 

Similar a Statements and Conditions in PHP

Web Application Development using PHP Chapter 2
Web Application Development using PHP Chapter 2Web Application Development using PHP Chapter 2
Web Application Development using PHP Chapter 2Mohd Harris Ahmad Jaal
 
Php Operators N Controllers
Php Operators N ControllersPhp Operators N Controllers
Php Operators N Controllersmussawir20
 
03loop conditional statements
03loop conditional statements03loop conditional statements
03loop conditional statementsAbdul Samad
 
Chapter 03 conditional statements
Chapter 03   conditional statementsChapter 03   conditional statements
Chapter 03 conditional statementsDhani Ahmad
 
c++ Lecture 3
c++ Lecture 3c++ Lecture 3
c++ Lecture 3sajidpk92
 
c++ Lecture 4
c++ Lecture 4c++ Lecture 4
c++ Lecture 4sajidpk92
 
Loops and conditional statements
Loops and conditional statementsLoops and conditional statements
Loops and conditional statementsSaad Sheikh
 
Introduction to PHP
Introduction to PHPIntroduction to PHP
Introduction to PHPprabhatjon
 
Php basic for vit university
Php basic for vit universityPhp basic for vit university
Php basic for vit universityMandakini Kumari
 
07 Introduction to PHP #burningkeyboards
07 Introduction to PHP #burningkeyboards07 Introduction to PHP #burningkeyboards
07 Introduction to PHP #burningkeyboardsDenis Ristic
 
Free PHP Book Online | PHP Development in India
Free PHP Book Online | PHP Development in IndiaFree PHP Book Online | PHP Development in India
Free PHP Book Online | PHP Development in IndiaDeepak Rajput
 

Similar a Statements and Conditions in PHP (20)

Web Application Development using PHP Chapter 2
Web Application Development using PHP Chapter 2Web Application Development using PHP Chapter 2
Web Application Development using PHP Chapter 2
 
Php Operators N Controllers
Php Operators N ControllersPhp Operators N Controllers
Php Operators N Controllers
 
PHP-Part2
PHP-Part2PHP-Part2
PHP-Part2
 
03loop conditional statements
03loop conditional statements03loop conditional statements
03loop conditional statements
 
Lesson 6 php if...else...elseif statements
Lesson 6   php if...else...elseif statementsLesson 6   php if...else...elseif statements
Lesson 6 php if...else...elseif statements
 
Chapter 03 conditional statements
Chapter 03   conditional statementsChapter 03   conditional statements
Chapter 03 conditional statements
 
PHP - Web Development
PHP - Web DevelopmentPHP - Web Development
PHP - Web Development
 
Control structures
Control structuresControl structures
Control structures
 
Loops
LoopsLoops
Loops
 
csc ppt 15.pptx
csc ppt 15.pptxcsc ppt 15.pptx
csc ppt 15.pptx
 
PHP
PHPPHP
PHP
 
c++ Lecture 3
c++ Lecture 3c++ Lecture 3
c++ Lecture 3
 
c++ Lecture 4
c++ Lecture 4c++ Lecture 4
c++ Lecture 4
 
Lecture 4
Lecture 4Lecture 4
Lecture 4
 
Loops and conditional statements
Loops and conditional statementsLoops and conditional statements
Loops and conditional statements
 
Loops (Refined).pptx
Loops (Refined).pptxLoops (Refined).pptx
Loops (Refined).pptx
 
Introduction to PHP
Introduction to PHPIntroduction to PHP
Introduction to PHP
 
Php basic for vit university
Php basic for vit universityPhp basic for vit university
Php basic for vit university
 
07 Introduction to PHP #burningkeyboards
07 Introduction to PHP #burningkeyboards07 Introduction to PHP #burningkeyboards
07 Introduction to PHP #burningkeyboards
 
Free PHP Book Online | PHP Development in India
Free PHP Book Online | PHP Development in IndiaFree PHP Book Online | PHP Development in India
Free PHP Book Online | PHP Development in India
 

Más de Maruf Abdullah (Rion)

Dynamic Systems Development Method (DSDM) - Agile
Dynamic Systems Development Method (DSDM) - AgileDynamic Systems Development Method (DSDM) - Agile
Dynamic Systems Development Method (DSDM) - AgileMaruf Abdullah (Rion)
 
Simulation Queuing System Example | Simulation & Modeling
Simulation Queuing System Example | Simulation & ModelingSimulation Queuing System Example | Simulation & Modeling
Simulation Queuing System Example | Simulation & ModelingMaruf Abdullah (Rion)
 
How to be a Successful Freelancer (Bangla)
How to be a Successful Freelancer (Bangla)How to be a Successful Freelancer (Bangla)
How to be a Successful Freelancer (Bangla)Maruf Abdullah (Rion)
 
Health Prediction System - an Artificial Intelligence Project 2015
Health Prediction System - an Artificial Intelligence Project 2015Health Prediction System - an Artificial Intelligence Project 2015
Health Prediction System - an Artificial Intelligence Project 2015Maruf Abdullah (Rion)
 
E-Voting System Development (Software Engineering Presentation)
E-Voting System Development (Software Engineering Presentation)E-Voting System Development (Software Engineering Presentation)
E-Voting System Development (Software Engineering Presentation)Maruf Abdullah (Rion)
 
Evolution of Mobile Network Technology
Evolution of Mobile Network TechnologyEvolution of Mobile Network Technology
Evolution of Mobile Network TechnologyMaruf Abdullah (Rion)
 

Más de Maruf Abdullah (Rion) (11)

Dynamic Systems Development Method (DSDM) - Agile
Dynamic Systems Development Method (DSDM) - AgileDynamic Systems Development Method (DSDM) - Agile
Dynamic Systems Development Method (DSDM) - Agile
 
Common Excel Shortcut Keys
Common Excel Shortcut KeysCommon Excel Shortcut Keys
Common Excel Shortcut Keys
 
Simulation Queuing System Example | Simulation & Modeling
Simulation Queuing System Example | Simulation & ModelingSimulation Queuing System Example | Simulation & Modeling
Simulation Queuing System Example | Simulation & Modeling
 
What is Big Data?
What is Big Data?What is Big Data?
What is Big Data?
 
How to be a Successful Freelancer (Bangla)
How to be a Successful Freelancer (Bangla)How to be a Successful Freelancer (Bangla)
How to be a Successful Freelancer (Bangla)
 
Relationship Between Big Data & AI
Relationship Between Big Data & AIRelationship Between Big Data & AI
Relationship Between Big Data & AI
 
Health Prediction System - an Artificial Intelligence Project 2015
Health Prediction System - an Artificial Intelligence Project 2015Health Prediction System - an Artificial Intelligence Project 2015
Health Prediction System - an Artificial Intelligence Project 2015
 
E-Voting System Development (Software Engineering Presentation)
E-Voting System Development (Software Engineering Presentation)E-Voting System Development (Software Engineering Presentation)
E-Voting System Development (Software Engineering Presentation)
 
Presentation on Big Data
Presentation on Big DataPresentation on Big Data
Presentation on Big Data
 
Evolution of Mobile Network Technology
Evolution of Mobile Network TechnologyEvolution of Mobile Network Technology
Evolution of Mobile Network Technology
 
Restaurant Management System
Restaurant Management SystemRestaurant Management System
Restaurant Management System
 

Último

Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxcallscotland1987
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxVishalSingh1417
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docxPoojaSen20
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxAmanpreet Kaur
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxnegromaestrong
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsMebane Rash
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 

Último (20)

Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptx
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 

Statements and Conditions in PHP

  • 2. MEMBERS INTRO  MD. IMRAN HOSSAIN {{ 183-25-691 }}  MARUF ABDULLAH {{ 183-25-706 }}  FAHIM FOYSAL KHAN {{ 183-25-692 }}  SUMON HAZRA {{ 181-25-644 }}  PRITOMA DEBNATH {{ 181-25-653 }}
  • 3. WE ARE COVERING FOLLOWING TOPICS  If...Else...Elseif Statements  Switch Statement  For Loop  While Loop  Do…While Loop
  • 4. IF …. ELSE …. ELSEIF  if statement executes some code if one condition is true.  if...else statement executes some code if a condition is true and another code if that condition is false.  if...elseif....else statement executes different codes for more than two conditions.
  • 5. EXAMPLE OF IF...ELSEIF...ELSE <?php $date = date("D"); if($date == "Friday"){ echo "Have a nice weekend!"; } elseif($date == "Sunday"){ echo "Have a nice Sunday!"; } else{ echo "Have a nice day!"; } ?>
  • 7. SWITCH STATEMENT  Switch Statement tests a variable against a series of values.  We can assume Switch Statement is an alternative to the if…elseif…else statement.
  • 8. EXAMPLE OF SWITCH STATEMENT <?php $date = date("D"); Switch ($date){ case "Friday ": echo "Have a nice weekend"; break; case "Sunday": echo "Have a nice Sunday!"; break; default: echo "Have a Nice Day!"; break; } ?>
  • 10. FOR LOOP  For loop executes a block of code a specified number of times.  Basic Syntax of For Loop: for ( init counter; test counter; increment counter) { code to be executed; }
  • 11. EXAMPLE OF FOR LOOP <?php for ($x = 0; $x <= 10; $x++) { echo "The number is: " . $x . "<br>"; } ?>
  • 13. WHILE LOOP  While loop executes a block of code as long as the specified condition is true.  Basic Syntax of While Loop: while (condition is true) { // code to be executed; }
  • 14. EXAMPLE OF WHILE LOOP <?php $x = 1; while($x <= 5) { echo "The number is: $x <br>"; $x++; } ?>
  • 16. DO…WHILE LOOP  Do...While loop will always execute the block of code once, it will then check the condition, and repeat the loop while the specified condition is true.  Basic syntax of Do…While Loop: do { // code to be executed; } while (condition is true);
  • 17. EXAMPLE OF DO…WHILE LOOP <?php $x = 6; do { echo "The number is: $x <br>"; $x++; } while ($x <= 5); ?>
  • 18. OUTPUT (DO …. WHILE LOOP)