Guest User

Untitled

a guest
Jan 21st, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.68 KB | None | 0 0
  1. <div class="textbm">News Archive</div>
  2. <span class="text">This Page is being refreshed every <?php echo Page::$delay / 60; ?> Minutes.</span><br /><br />
  3. <table border="0" cellspacing="0" cellpadding="0" width="95%" class="text">
  4. <tr>
  5. <td width="100%" colspan="7">
  6. <table width="556" border="0" cellspacing="0" cellpadding="0">
  7. <tr>
  8. <td colspan="3"><img src="/themes/rofd/img/tble_top.gif" width="556" height="49"></td>
  9. </tr>
  10. <tr>
  11.  
  12. <td width="13" valign="bottom" background="/themes/rofd/img/news_slice_left.gif">&nbsp;</td>
  13. <td width="530" align="left" valign="top">
  14. <table rules="all" border="1" cellspacing="0" cellpadding="0" width="530" bordercolor="#25120B">
  15. <tr class="textwhite">
  16. <td width="10%" valign="top" bgcolor="#25120B" align="center"><strong>#</strong></td>
  17. <td width="25%" valign="top" bgcolor="#25120B" align="center"><strong>Date</strong></td>
  18. <td width="65%" height="28" valign="top" bgcolor="#25120B" align="center"><strong>Name</strong></td>
  19. </tr>
  20. <div id="pvp_1" style="display:block;">
  21. <?php
  22. $i = 0;
  23. foreach (Page::$news as $news)
  24. {
  25. $i++;
  26. $n = $i % 2;
  27. ?>
  28. <tr>
  29. <td align="center" height="22" bgcolor="#13110B" style="color: #fff;">
  30. <?php echo $i; ?>
  31. </td>
  32. <td align="center" height="22" bgcolor="#13110B" style="color: #fff;">
  33. <?php echo $news['dDate']; ?>
  34. </td>
  35. <td align="center" height="22" bgcolor="#<?php if (!$n){ ?>e7dbc3<?php }else{ ?>#d4cbab<?php } ?>">
  36. <a href="/news/show/<?php echo $news['nID']; ?>:<?php echo inputT2 ($news['strTitle']); ?>/">
  37. <?php echo $news['strTitle']; ?>
  38. </a>
  39. </td>
  40. </tr>
  41. <?php
  42. }
  43. ?>
  44. </div>
  45. </table>
  46. </td>
  47. <td width="13" valign="bottom" background="/themes/rofd/img/news_slice_right.gif">&nbsp;</td>
  48. </tr>
  49.  
  50. <tr>
  51. <td colspan="3"><img src="/themes/rofd/img/tble_btm.gif" width="556" height="49"></td>
  52. </tr>
  53. </table>
  54. </td>
  55. </tr>
  56. </table>
Add Comment
Please, Sign In to add comment