Code: Select all
<?php if (isset($content)) { ?>
<div id="content"><?php echo $content; ?></div>
<?php if (isset($content)) echo $content; ?>
<?php if (isset($latest) & isset($show_latest)) echo $latest; ?>
<?php if (isset($featured) & isset($show_featured)) echo $featured; ?>
<?php if (isset($specials) & isset($show_specials)) echo $specials; ?>
<?php } ?>
Code: Select all
<div id="content">
<?php
if (isset($content)) echo $content;
if (isset($categories) & isset($show_categories)) echo $categories;
if (isset($latest) & isset($show_latest)) echo $latest;
if (isset($featured) & isset($show_featured)) echo $featured;
if (isset($specials) & isset($show_specials)) echo $specials;
?>
</div>