very simple question. Lol i am embarassed to ask this cause i am usually very good with php but what are the ways to display html inside of php? for example:
<? if($flag): ?>
<div>This will show is $flag is true </div>
<? endif; ?>
OR
<?
if($flag)
echo '<div>This will show is $flag is true </div>';
?>
I know that there are at least 2 other ways i just cannot remember them atm... Help is def. appreciated in advance!! =D