Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php foreach ($newsList as $newsItem):?>
- <div class="post">
- <h2 class="title"><a href='/news/<?php echo $newsItem['id'] ;?>'><?php echo $newsItem['title'].' # '.$newsItem['id'];?></a></h2>
- <p class="meta">Posted by <a href="#"><?php echo $newsItem['author_name'];?></a> on <?php echo $newsItem['date'];?>
- • <a href='/news/<?php echo $newsItem['id'] ;?>' class="permalink"> Full article</a></p>
- <div class="entry">
- <p><img src="/template/images/pic01.jpg" width="800" height="300" alt="" /></p>
- <p><?php echo $newsItem['short_content'];?></p>
- </div>
- </div>
- <?php endforeach;?>
Advertisement
Add Comment
Please, Sign In to add comment