Advertisements
Advertisements
Question
List out Conditional Statements in PHP.
Short Note
Solution
- if Statement
- if…else Statement
- if…else if….else Statement
- switch Statement
shaalaa.com
Php Conditional Statements
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
What will be the output of the following PHP code?
<?php
$x;
if ($x)
print “hi” ;
else
print “how are u”;
?>
What will be the output of the following PHP code?
<?php
$x = 0;
if ($x++)
print “hi”;
else
print “how are u”;
?>
What will be the output of the following PHP code?
<?php
$x;
if ($x == 0)
print “hi” ;
else
print “how are u”;
print “hello”
?>
What will be the output of the following PHP code?
<?php
$a = “”;
if ($a)
print “all”;
if ______
else
print “some”;
?>
What will be the output of the following PHP code?
<?php
$x = 10;
$y = 20;
if ($x > $y + $y != 3)
print “hi” ;
else
print “how are u”;
?>
Define Conditional Statements in PHP.
Write the features Conditional Statements in PHP.
Differentiate Switch and if else statement.
Explain the Function of Conditional Statements in PHP.
Explain the working of Conditional Statements in PHP?