php _if ternary code example
Example 1: write if and else in one line php
$result = ($data->status == 1) ? 'active' : 'disable'
Example 2: 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
*/
?>