Basically I was just wondering what is the difference between this two statements in HTML script:
<?php if($something == null) { ?>
<div>This is just HTML code</div>
<?php } ?>
and:
<?php if($something == null) {
echo '<div>This is just HTML code passed from PHP</div>';
} ?>
Is there a preferred way?