Jump to content
  • 0

How to make this kind of format?


Question

Posted

The flux content management addons be viewed like this as seen on the attached.

What should be the code of it?

 

Any tutorial regarding to this matter? Thanks!

post-3966-0-86684700-1362055687_thumb.jpg

5 answers to this question

Recommended Posts

Posted
 
capturemdy.jpg
 

 

<?php foreach($rss->items as $item):?>
<table  width="800" >
  <tr>
    <td align="left">
    <b><a href="<?php echo $item['link'] ?>" target="_blank"><?php echo $item['title'] ?></a></b>
    </td><td align="right">
    <?php if(isset($item['pubdate'])): ?>
    <i> <?php $item['pubdate'] = date ('l, F dS, Y', strtotime ($item['pubdate']));  echo $item['pubdate'];?></i><?php endif; ?>
    </td>
  </tr>
</table>
<?php endforeach; ?>

 

/meh

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...