SlideShare a Scribd company logo
USING CONDITIONAL CODE
CONDITIONAL CODE
If( ) {
}
condition
// your additional code goes here
// . . .
TERMINOLOGY
parentheses
brackets
braces
( )
{ }
[ ]
CONDITIONAL CODE
If( ) {
}
condition
echo “it’s true!”;
// . . .
$a < 50$b > 20
true or false?
$c == 99$c === 99$d != 100 Code block
EQUALITY
If( $a == $b ){
// execute this code
}
ASSIGNMENT INSTEAD OF EQUALITY
$a = 5;
$b = 10;
If( $a = $b ){
// always true!
}
OPERATOR WITH =
= assignment
== equality
=== strict equality
COMPARISON
If( $a == $b ){ …
If( $a != $b ){ …
If( $a === $b ){ …
If( $a !== $b ){ …
If( $a > $b ){ …
If( $a < $b ){ …
If( $a >= $b ){ …
If( $a <= $b ){ …
&&
LOGICAL AND / OR
If( $a === $b $c === $d){…
If( $a === $b $c === $d){…
If( ($a > $b) && ($c > $d) ){…
and
or||

More Related Content

DOCX
Matlab code for secant method
DOCX
เฉลยแบบฝึกหัดบทที่ 1
DOCX
Python.St.Petersburg Paradox sim
PDF
Catastrophic Cancellation
PPTX
C Programming Language Step by Step Part 5
PPTX
Css presentation lecture 3
PPT
Javascript 2
Matlab code for secant method
เฉลยแบบฝึกหัดบทที่ 1
Python.St.Petersburg Paradox sim
Catastrophic Cancellation
C Programming Language Step by Step Part 5
Css presentation lecture 3
Javascript 2

Viewers also liked (20)

PPTX
Css presentation lecture 1
PPTX
Dreamweaver cs6
PPT
String functions and operations
PPT
Javascript lecture 3
PPTX
Dom in javascript
PPT
Java script lecture 1
PPT
Web forms and html lecture Number 4
PPT
PHP array 2
PPT
String functions and operations
PPTX
Sessions in php
PPTX
Css presentation lecture 4
PPTX
Introduction to HTML5
PPT
Functions in php
PPTX
PHP array 1
PPT
Form validation server side
PPT
String functions and operations
PPT
Form validation with built in functions
PPT
Javascript lecture 4
PPT
Web forms and html lecture Number 3
PDF
HTML5: features with examples
Css presentation lecture 1
Dreamweaver cs6
String functions and operations
Javascript lecture 3
Dom in javascript
Java script lecture 1
Web forms and html lecture Number 4
PHP array 2
String functions and operations
Sessions in php
Css presentation lecture 4
Introduction to HTML5
Functions in php
PHP array 1
Form validation server side
String functions and operations
Form validation with built in functions
Javascript lecture 4
Web forms and html lecture Number 3
HTML5: features with examples
Ad

More from Mudasir Syed (20)

PPT
Error reporting in php
PPT
Cookies in php lecture 2
PPT
Cookies in php lecture 1
PPTX
PPT
Reporting using FPDF
PPT
Oop in php lecture 2
PPT
Oop in php lecture 2
PPT
Filing system in PHP
PPT
Time manipulation lecture 2
PPT
Time manipulation lecture 1
PPT
Php Mysql
PPT
Adminstrating Through PHPMyAdmin
PPT
Sql select
PPT
PHP mysql Sql
PPT
PHP mysql Mysql joins
PPTX
PHP mysql Introduction database
PPT
PHP mysql Installing my sql 5.1
PPT
PHP mysql Er diagram
PPT
PHP mysql Database normalizatin
PPT
PHP mysql Aggregate functions
Error reporting in php
Cookies in php lecture 2
Cookies in php lecture 1
Reporting using FPDF
Oop in php lecture 2
Oop in php lecture 2
Filing system in PHP
Time manipulation lecture 2
Time manipulation lecture 1
Php Mysql
Adminstrating Through PHPMyAdmin
Sql select
PHP mysql Sql
PHP mysql Mysql joins
PHP mysql Introduction database
PHP mysql Installing my sql 5.1
PHP mysql Er diagram
PHP mysql Database normalizatin
PHP mysql Aggregate functions
Ad

Recently uploaded (20)

PDF
Empowerment Technology for Senior High School Guide
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
medical_surgical_nursing_10th_edition_ignatavicius_TEST_BANK_pdf.pdf
PPTX
Orientation - ARALprogram of Deped to the Parents.pptx
PPTX
UNIT III MENTAL HEALTH NURSING ASSESSMENT
PPTX
Radiologic_Anatomy_of_the_Brachial_plexus [final].pptx
PDF
Practical Manual AGRO-233 Principles and Practices of Natural Farming
PPTX
Lesson notes of climatology university.
PPTX
History, Philosophy and sociology of education (1).pptx
PDF
Chinmaya Tiranga quiz Grand Finale.pdf
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PPTX
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
PDF
What if we spent less time fighting change, and more time building what’s rig...
PDF
Complications of Minimal Access Surgery at WLH
PDF
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
PPTX
Onco Emergencies - Spinal cord compression Superior vena cava syndrome Febr...
PPTX
Introduction-to-Literarature-and-Literary-Studies-week-Prelim-coverage.pptx
PPTX
Digestion and Absorption of Carbohydrates, Proteina and Fats
PDF
LDMMIA Reiki Yoga Finals Review Spring Summer
PPTX
UV-Visible spectroscopy..pptx UV-Visible Spectroscopy – Electronic Transition...
Empowerment Technology for Senior High School Guide
Final Presentation General Medicine 03-08-2024.pptx
medical_surgical_nursing_10th_edition_ignatavicius_TEST_BANK_pdf.pdf
Orientation - ARALprogram of Deped to the Parents.pptx
UNIT III MENTAL HEALTH NURSING ASSESSMENT
Radiologic_Anatomy_of_the_Brachial_plexus [final].pptx
Practical Manual AGRO-233 Principles and Practices of Natural Farming
Lesson notes of climatology university.
History, Philosophy and sociology of education (1).pptx
Chinmaya Tiranga quiz Grand Finale.pdf
Final Presentation General Medicine 03-08-2024.pptx
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
What if we spent less time fighting change, and more time building what’s rig...
Complications of Minimal Access Surgery at WLH
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
Onco Emergencies - Spinal cord compression Superior vena cava syndrome Febr...
Introduction-to-Literarature-and-Literary-Studies-week-Prelim-coverage.pptx
Digestion and Absorption of Carbohydrates, Proteina and Fats
LDMMIA Reiki Yoga Finals Review Spring Summer
UV-Visible spectroscopy..pptx UV-Visible Spectroscopy – Electronic Transition...

loops and branches