Source Code:
(back to article)
<?php $condition = true; if ($condition) { $result = "expression1"; } else { $result = "expression2"; } echo $result;
Result:
Report an issue