SlideShare a Scribd company logo
WEB DEVELOPMENT
PHP
PRESENTATORS
MD. AL-MAMUN SARKAR
PHP
Conditional Statement
Loop
1
2
Conditional Statement
if Statement
if-else statement
1
2
Nested if-else3
Switch4
if statement
if (condition) {
code to be executed if condition is true;
}
2
if-else statement
if (condition) {
code to be executed if condition is true;
} else {
code to be executed if condition is false;
}
2
Nested if-else
if (condition) {
code to be executed if this condition is true;
} elseif (condition) {
code to be executed if this condition is true;
} else {
code to be executed if all conditions are false;
}
Nested if-else
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;
...
default:
code to be executed if n is different from all labels;
}
2
Loops
while loop2
do while loop3
foreach4
For loop1
While Loop
while (condition is true) {
code to be executed;
}
For Loop
for (init counter; test counter; increment counter) {
code to be executed;
}
Do while Loop
do {
code to be executed;
} while (condition is true);
Foreach Loop
foreach ($array as $value) {
code to be executed;
}
QUESTION
?
THANK
YOU

More Related Content

What's hot (20)

Php with MYSQL Database
Php with MYSQL Database
Computer Hardware & Trouble shooting
 
Python programming : Files
Python programming : Files
Emertxe Information Technologies Pvt Ltd
 
python conditional statement.pptx
python conditional statement.pptx
Dolchandra
 
Php and MySQL
Php and MySQL
Tiji Thomas
 
Php using variables-operators
Php using variables-operators
Khem Puthea
 
Presentation on pointer.
Presentation on pointer.
Md. Afif Al Mamun
 
PHP Loops and PHP Forms
PHP Loops and PHP Forms
M.Zalmai Rahmani
 
PHP FUNCTIONS
PHP FUNCTIONS
Zeeshan Ahmed
 
PHP Functions & Arrays
PHP Functions & Arrays
Henry Osborne
 
Introduction to Pseudocode
Introduction to Pseudocode
Damian T. Gordon
 
Tcp/ip server sockets
Tcp/ip server sockets
rajshreemuthiah
 
Nested loops
Nested loops
Neeru Mittal
 
Flow oriented modeling
Flow oriented modeling
ramyaaswin
 
Pointers in c - Mohammad Salman
Pointers in c - Mohammad Salman
MohammadSalman129
 
10. switch case
10. switch case
Way2itech
 
GUI components in Java
GUI components in Java
kirupasuchi1996
 
Repetition Structure
Repetition Structure
PRN USM
 
Operators in java
Operators in java
Then Murugeshwari
 
Loops in c++ programming language
Loops in c++ programming language
MUHAMMAD ALI student of IT at karakoram International university gilgit baltistan
 
Java if else condition - powerpoint persentation
Java if else condition - powerpoint persentation
Maneesha Caldera
 

Similar to PHP Lecture 2 - Conditional Statement, Loop (20)

Web Application Development using PHP Chapter 2
Web Application Development using PHP Chapter 2
Mohd Harris Ahmad Jaal
 
03loop conditional statements
03loop conditional statements
Abdul Samad
 
PHP CONDITIONAL STATEMENTS AND LOOPING.ppt
PHP CONDITIONAL STATEMENTS AND LOOPING.ppt
rehna9
 
PHP Lecture 02.pptx PHP Lecture 02 .pptx
PHP Lecture 02.pptx PHP Lecture 02 .pptx
shahgohar1
 
All about decision making statements in php
All about decision making statements in php
Programing Code Example
 
Lesson 6 php if...else...elseif statements
Lesson 6 php if...else...elseif statements
MLG College of Learning, Inc
 
Decision and looping examples with php (WT)
Decision and looping examples with php (WT)
kunjan shah
 
PHP-Part2
PHP-Part2
Ahmed Saihood
 
Conditional Code (Day-1) Looping & Condition
Conditional Code (Day-1) Looping & Condition
ssuser2b99481
 
Php Basics Iterations, looping
Php Basics Iterations, looping
Muthuganesh S
 
Php Operators N Controllers
Php Operators N Controllers
mussawir20
 
Web app development_php_05
Web app development_php_05
Hassen Poreya
 
introduction to php web programming 2024.ppt
introduction to php web programming 2024.ppt
idaaryanie
 
advancing in php programming part four.pptx
advancing in php programming part four.pptx
KisakyeDennis
 
Chapter 03 conditional statements
Chapter 03 conditional statements
Dhani Ahmad
 
Php.ppt
Php.ppt
Nidhi mishra
 
PHP - Introduction to PHP - Mazenet Solution
PHP - Introduction to PHP - Mazenet Solution
Mazenetsolution
 
Php workshop L02 php basics
Php workshop L02 php basics
Mohammad Tahsin Alshalabi
 
Conditional statement
Conditional statement
ilakkiya
 
Intro to php
Intro to php
Ahmed Farag
 
Web Application Development using PHP Chapter 2
Web Application Development using PHP Chapter 2
Mohd Harris Ahmad Jaal
 
03loop conditional statements
03loop conditional statements
Abdul Samad
 
PHP CONDITIONAL STATEMENTS AND LOOPING.ppt
PHP CONDITIONAL STATEMENTS AND LOOPING.ppt
rehna9
 
PHP Lecture 02.pptx PHP Lecture 02 .pptx
PHP Lecture 02.pptx PHP Lecture 02 .pptx
shahgohar1
 
All about decision making statements in php
All about decision making statements in php
Programing Code Example
 
Decision and looping examples with php (WT)
Decision and looping examples with php (WT)
kunjan shah
 
Conditional Code (Day-1) Looping & Condition
Conditional Code (Day-1) Looping & Condition
ssuser2b99481
 
Php Basics Iterations, looping
Php Basics Iterations, looping
Muthuganesh S
 
Php Operators N Controllers
Php Operators N Controllers
mussawir20
 
Web app development_php_05
Web app development_php_05
Hassen Poreya
 
introduction to php web programming 2024.ppt
introduction to php web programming 2024.ppt
idaaryanie
 
advancing in php programming part four.pptx
advancing in php programming part four.pptx
KisakyeDennis
 
Chapter 03 conditional statements
Chapter 03 conditional statements
Dhani Ahmad
 
PHP - Introduction to PHP - Mazenet Solution
PHP - Introduction to PHP - Mazenet Solution
Mazenetsolution
 
Conditional statement
Conditional statement
ilakkiya
 
Ad

More from Al-Mamun Sarkar (20)

01 Introductions to System Design
01 Introductions to System Design
Al-Mamun Sarkar
 
Introduction to machine learning
Introduction to machine learning
Al-Mamun Sarkar
 
Software Development Life Cycle (SDLC)
Software Development Life Cycle (SDLC)
Al-Mamun Sarkar
 
Understanding Wordpress Plugn and Theme users' behavior
Understanding Wordpress Plugn and Theme users' behavior
Al-Mamun Sarkar
 
Database Management - Lecture 4 - PHP and Mysql
Database Management - Lecture 4 - PHP and Mysql
Al-Mamun Sarkar
 
Database Management - Lecture 3 - SQL Aggregate Functions, Join
Database Management - Lecture 3 - SQL Aggregate Functions, Join
Al-Mamun Sarkar
 
Database Management - Lecture 2 - SQL select, insert, update and delete
Database Management - Lecture 2 - SQL select, insert, update and delete
Al-Mamun Sarkar
 
Database Management - Lecture 1
Database Management - Lecture 1
Al-Mamun Sarkar
 
PHP Lecture 6 - Php file uploading
PHP Lecture 6 - Php file uploading
Al-Mamun Sarkar
 
PHP Lecture 5 - Date time, Include, session
PHP Lecture 5 - Date time, Include, session
Al-Mamun Sarkar
 
PHP Lecture 4 - Working with form, GET and Post Methods
PHP Lecture 4 - Working with form, GET and Post Methods
Al-Mamun Sarkar
 
PHP Lecture 3 - Functions
PHP Lecture 3 - Functions
Al-Mamun Sarkar
 
PHP Lecture 1 - String, Constants, Arrays, Operators
PHP Lecture 1 - String, Constants, Arrays, Operators
Al-Mamun Sarkar
 
Web Design Course - Lecture 21 - Bootstrap Jumbotron, Thumbnails, Alerts, Pro...
Web Design Course - Lecture 21 - Bootstrap Jumbotron, Thumbnails, Alerts, Pro...
Al-Mamun Sarkar
 
Web Design Course - Lecture 20 - Bootstrap Dropdown, Button group, Input grou...
Web Design Course - Lecture 20 - Bootstrap Dropdown, Button group, Input grou...
Al-Mamun Sarkar
 
Web Design Course - Lecture 18 - Boostrap, Gatting started, grid system, tables
Web Design Course - Lecture 18 - Boostrap, Gatting started, grid system, tables
Al-Mamun Sarkar
 
Web Design Course - Lecture 11 - CSS3, Border radius, Box shadow
Web Design Course - Lecture 11 - CSS3, Border radius, Box shadow
Al-Mamun Sarkar
 
Web Design Course - Lecture 10 - Floating, Align, navigation bar, Image galle...
Web Design Course - Lecture 10 - Floating, Align, navigation bar, Image galle...
Al-Mamun Sarkar
 
Web Design Course - Lecture 9 - Border, Padding and Margin, Display
Web Design Course - Lecture 9 - Border, Padding and Margin, Display
Al-Mamun Sarkar
 
Web Design Course - Lecture 7 - Basic Css
Web Design Course - Lecture 7 - Basic Css
Al-Mamun Sarkar
 
01 Introductions to System Design
01 Introductions to System Design
Al-Mamun Sarkar
 
Introduction to machine learning
Introduction to machine learning
Al-Mamun Sarkar
 
Software Development Life Cycle (SDLC)
Software Development Life Cycle (SDLC)
Al-Mamun Sarkar
 
Understanding Wordpress Plugn and Theme users' behavior
Understanding Wordpress Plugn and Theme users' behavior
Al-Mamun Sarkar
 
Database Management - Lecture 4 - PHP and Mysql
Database Management - Lecture 4 - PHP and Mysql
Al-Mamun Sarkar
 
Database Management - Lecture 3 - SQL Aggregate Functions, Join
Database Management - Lecture 3 - SQL Aggregate Functions, Join
Al-Mamun Sarkar
 
Database Management - Lecture 2 - SQL select, insert, update and delete
Database Management - Lecture 2 - SQL select, insert, update and delete
Al-Mamun Sarkar
 
Database Management - Lecture 1
Database Management - Lecture 1
Al-Mamun Sarkar
 
PHP Lecture 6 - Php file uploading
PHP Lecture 6 - Php file uploading
Al-Mamun Sarkar
 
PHP Lecture 5 - Date time, Include, session
PHP Lecture 5 - Date time, Include, session
Al-Mamun Sarkar
 
PHP Lecture 4 - Working with form, GET and Post Methods
PHP Lecture 4 - Working with form, GET and Post Methods
Al-Mamun Sarkar
 
PHP Lecture 3 - Functions
PHP Lecture 3 - Functions
Al-Mamun Sarkar
 
PHP Lecture 1 - String, Constants, Arrays, Operators
PHP Lecture 1 - String, Constants, Arrays, Operators
Al-Mamun Sarkar
 
Web Design Course - Lecture 21 - Bootstrap Jumbotron, Thumbnails, Alerts, Pro...
Web Design Course - Lecture 21 - Bootstrap Jumbotron, Thumbnails, Alerts, Pro...
Al-Mamun Sarkar
 
Web Design Course - Lecture 20 - Bootstrap Dropdown, Button group, Input grou...
Web Design Course - Lecture 20 - Bootstrap Dropdown, Button group, Input grou...
Al-Mamun Sarkar
 
Web Design Course - Lecture 18 - Boostrap, Gatting started, grid system, tables
Web Design Course - Lecture 18 - Boostrap, Gatting started, grid system, tables
Al-Mamun Sarkar
 
Web Design Course - Lecture 11 - CSS3, Border radius, Box shadow
Web Design Course - Lecture 11 - CSS3, Border radius, Box shadow
Al-Mamun Sarkar
 
Web Design Course - Lecture 10 - Floating, Align, navigation bar, Image galle...
Web Design Course - Lecture 10 - Floating, Align, navigation bar, Image galle...
Al-Mamun Sarkar
 
Web Design Course - Lecture 9 - Border, Padding and Margin, Display
Web Design Course - Lecture 9 - Border, Padding and Margin, Display
Al-Mamun Sarkar
 
Web Design Course - Lecture 7 - Basic Css
Web Design Course - Lecture 7 - Basic Css
Al-Mamun Sarkar
 
Ad

Recently uploaded (20)

dp-700 exam questions sample docume .pdf
dp-700 exam questions sample docume .pdf
pravkumarbiz
 
Advanced Token Development - Decentralized Innovation
Advanced Token Development - Decentralized Innovation
arohisinghas720
 
Async-ronizing Success at Wix - Patterns for Seamless Microservices - Devoxx ...
Async-ronizing Success at Wix - Patterns for Seamless Microservices - Devoxx ...
Natan Silnitsky
 
Code and No-Code Journeys: The Coverage Overlook
Code and No-Code Journeys: The Coverage Overlook
Applitools
 
Microsoft Business-230T01A-ENU-PowerPoint_01.pptx
Microsoft Business-230T01A-ENU-PowerPoint_01.pptx
soulamaabdoulaye128
 
How Insurance Policy Management Software Streamlines Operations
How Insurance Policy Management Software Streamlines Operations
Insurance Tech Services
 
AI-Powered Compliance Solutions for Global Regulations | Certivo
AI-Powered Compliance Solutions for Global Regulations | Certivo
certivoai
 
MOVIE RECOMMENDATION SYSTEM, UDUMULA GOPI REDDY, Y24MC13085.pptx
MOVIE RECOMMENDATION SYSTEM, UDUMULA GOPI REDDY, Y24MC13085.pptx
Maharshi Mallela
 
IMAGE CLASSIFICATION USING CONVOLUTIONAL NEURAL NETWORK.P.pptx
IMAGE CLASSIFICATION USING CONVOLUTIONAL NEURAL NETWORK.P.pptx
usmanch7829
 
Women in Tech: Marketo Engage User Group - June 2025 - AJO with AWS
Women in Tech: Marketo Engage User Group - June 2025 - AJO with AWS
BradBedford3
 
Smadav Pro 2025 Rev 15.4 Crack Full Version With Registration Key
Smadav Pro 2025 Rev 15.4 Crack Full Version With Registration Key
joybepari360
 
Software Testing & it’s types (DevOps)
Software Testing & it’s types (DevOps)
S Pranav (Deepu)
 
SAP PM Module Level-IV Training Complete.ppt
SAP PM Module Level-IV Training Complete.ppt
MuhammadShaheryar36
 
Porting Qt 5 QML Modules to Qt 6 Webinar
Porting Qt 5 QML Modules to Qt 6 Webinar
ICS
 
Migrating to Azure Cosmos DB the Right Way
Migrating to Azure Cosmos DB the Right Way
Alexander (Alex) Komyagin
 
Looking for a BIRT Report Alternative Here’s Why Helical Insight Stands Out.pdf
Looking for a BIRT Report Alternative Here’s Why Helical Insight Stands Out.pdf
Varsha Nayak
 
Generative Artificial Intelligence and its Applications
Generative Artificial Intelligence and its Applications
SandeepKS52
 
Plooma is a writing platform to plan, write, and shape books your way
Plooma is a writing platform to plan, write, and shape books your way
Plooma
 
Reimagining Software Development and DevOps with Agentic AI
Reimagining Software Development and DevOps with Agentic AI
Maxim Salnikov
 
Transmission Media. (Computer Networks)
Transmission Media. (Computer Networks)
S Pranav (Deepu)
 
dp-700 exam questions sample docume .pdf
dp-700 exam questions sample docume .pdf
pravkumarbiz
 
Advanced Token Development - Decentralized Innovation
Advanced Token Development - Decentralized Innovation
arohisinghas720
 
Async-ronizing Success at Wix - Patterns for Seamless Microservices - Devoxx ...
Async-ronizing Success at Wix - Patterns for Seamless Microservices - Devoxx ...
Natan Silnitsky
 
Code and No-Code Journeys: The Coverage Overlook
Code and No-Code Journeys: The Coverage Overlook
Applitools
 
Microsoft Business-230T01A-ENU-PowerPoint_01.pptx
Microsoft Business-230T01A-ENU-PowerPoint_01.pptx
soulamaabdoulaye128
 
How Insurance Policy Management Software Streamlines Operations
How Insurance Policy Management Software Streamlines Operations
Insurance Tech Services
 
AI-Powered Compliance Solutions for Global Regulations | Certivo
AI-Powered Compliance Solutions for Global Regulations | Certivo
certivoai
 
MOVIE RECOMMENDATION SYSTEM, UDUMULA GOPI REDDY, Y24MC13085.pptx
MOVIE RECOMMENDATION SYSTEM, UDUMULA GOPI REDDY, Y24MC13085.pptx
Maharshi Mallela
 
IMAGE CLASSIFICATION USING CONVOLUTIONAL NEURAL NETWORK.P.pptx
IMAGE CLASSIFICATION USING CONVOLUTIONAL NEURAL NETWORK.P.pptx
usmanch7829
 
Women in Tech: Marketo Engage User Group - June 2025 - AJO with AWS
Women in Tech: Marketo Engage User Group - June 2025 - AJO with AWS
BradBedford3
 
Smadav Pro 2025 Rev 15.4 Crack Full Version With Registration Key
Smadav Pro 2025 Rev 15.4 Crack Full Version With Registration Key
joybepari360
 
Software Testing & it’s types (DevOps)
Software Testing & it’s types (DevOps)
S Pranav (Deepu)
 
SAP PM Module Level-IV Training Complete.ppt
SAP PM Module Level-IV Training Complete.ppt
MuhammadShaheryar36
 
Porting Qt 5 QML Modules to Qt 6 Webinar
Porting Qt 5 QML Modules to Qt 6 Webinar
ICS
 
Looking for a BIRT Report Alternative Here’s Why Helical Insight Stands Out.pdf
Looking for a BIRT Report Alternative Here’s Why Helical Insight Stands Out.pdf
Varsha Nayak
 
Generative Artificial Intelligence and its Applications
Generative Artificial Intelligence and its Applications
SandeepKS52
 
Plooma is a writing platform to plan, write, and shape books your way
Plooma is a writing platform to plan, write, and shape books your way
Plooma
 
Reimagining Software Development and DevOps with Agentic AI
Reimagining Software Development and DevOps with Agentic AI
Maxim Salnikov
 
Transmission Media. (Computer Networks)
Transmission Media. (Computer Networks)
S Pranav (Deepu)
 

PHP Lecture 2 - Conditional Statement, Loop