ternary if condition php code example Example: ternary operator in php <?php $marks=40; print ($marks>=40) ? "pass" : "Fail"; ?>