php if conditional HTML

<?php if($first_condition){ ?> /*$first_condition is true*/ <?php }else if ($second_condition){ ?> /*$first_condition is false and $second_condition is true*/ <?php }else{ ?> /*$first_condition and $second_condition are false*/ <?php } ?>

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.