php ternary operator in html code example
Example 1: php ternary operator
<?php
#Syntex
(if Condition) ? (stat1) : (stat2);
#example
$var1 = 5;
$var2 = 2;
echo $check = ($var1 > $var2) ? "right" : "wrong";
#output : right
/*
explination : if condition is true then display the stat1 and if condition is
worng then display stat2
*/
?>
Example 2: php splat operator
foo(...$args);
Example 3: javascript ternary operator
//ternary operator example:
var isOpen = true; //try changing isOpen to false
var welcomeMessage = isOpen ? "We are open, come on in." : "Sorry, we are closed.";