php if shortand code example
Example 1: php ternary
$result = $condition ? 'foo' : 'bar';
Example 2: php if short form
<?php echo ($qte > 0) ? $qte : 0; ?>
$result = $condition ? 'foo' : 'bar';
<?php echo ($qte > 0) ? $qte : 0; ?>