<div id="main"> <div> <article> <h1><?php echo $item['title']; ?> </h1> <?php echo My_Utility::convertToParas($item['article']); ?> </article> </div> </div>
<?php foreach ($result as $item) { ?> <article> <h1><?php echo $item['title']; ?> </h1> <h3><strong>Created at: </strong><?php echo $item['created']; ?> </h3> <p></p> <?php $extract = My_Utility::getFirst($item['article']); echo My_Utility::convertToParas($extract[0]); if ($extract[1]) { ?> <a href = "<?php echo site_url('news/view/' . $item['article_id']); ?> ">More</a> <?php } ?> </article> <?php } ?> </div> <div id="secondary">