017 - ternary operatore (condition ? ture statements : false statements )Value is Smaller
<?php
// 017 - ternary operatore (condition ? ture statements : false statements )
echo "</br><span class='myheading'>017 - ternary operatore (condition ? ture statements : false statements )</span></br>";
$x = 10;
($x > 20) ? $z = "Greater" : $z = "Smaller"; // direct
$z = ($x > 20) ? "Greater" : "Smaller"; // saving in variable
$z = "Value is " . ($x > 20 ? "Greater" : "Smaller"); // with text
echo $z;
?>