Jump to content
  • 0

How to make this kind of format?


Meister

Question


  • Group:  Members
  • Topic Count:  280
  • Topics Per Day:  0.06
  • Content Count:  841
  • Reputation:   17
  • Joined:  04/16/12
  • Last Seen:  

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

Link to comment
Share on other sites

5 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  17
  • Topics Per Day:  0.00
  • Content Count:  754
  • Reputation:   186
  • Joined:  05/22/12
  • Last Seen:  

 
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

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  113
  • Topics Per Day:  0.03
  • Content Count:  295
  • Reputation:   2
  • Joined:  03/06/12
  • Last Seen:  

Is that a link to their forum? I saw an topic about that awhile ago. q.q

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  280
  • Topics Per Day:  0.06
  • Content Count:  841
  • Reputation:   17
  • Joined:  04/16/12
  • Last Seen:  

the ceres design released by keyworld

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  17
  • Topics Per Day:  0.00
  • Content Count:  754
  • Reputation:   186
  • Joined:  05/22/12
  • Last Seen:  

Using my rss2news to display it like that is easy.

 

Here's a port of it for thor, you can base it off from Web/Index.php

 

http://rathena.org/board/topic/75817-thor-patcher-question/#entry164447

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  280
  • Topics Per Day:  0.06
  • Content Count:  841
  • Reputation:   17
  • Joined:  04/16/12
  • Last Seen:  

Using my rss2news to display it like that is easy.

 

Here's a port of it for thor, you can base it off from Web/Index.php

 

http://rathena.org/board/topic/75817-thor-patcher-question/#entry164447

 

But the thor patch shows some of the details.. What if only the title of the update?

Link to comment
Share on other sites

×
×
  • Create New...