Просмотр файла fnewts.php

Размер файла: 404B
  1. <?php
  2. include 'inc/db.php';
  3. include 'inc/1.php';
  4. msg("Новые темы");
  5. $last=mysql_query("SELECT * FROM `forum` ORDER BY `time` DESC LIMIT 15");
  6. $b=1;
  7. while ($f=mysql_fetch_assoc($last)){
  8. $p=($b%2);
  9. echo "<div class='p$p'><a href='theme.php?id=$f[id]'>".htmlspecialchars($f['name'])."</a></div>";
  10. $b++;
  11. }
  12. msg("<a href='forum.php'>Форум</a>");
  13. include_once 'inc/foot.php';
  14. ?>
  15.  
  16.