Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- while($row2 = mysql_fetch_assoc($query_two))
- {
- //extract newest reply
- $query_four = mysql_query("SELECT * FROM threads WHERE parent = '{$row2['id']}' ORDER BY lastpost DESC LIMIT 1");
- $extract_four = mysql_fetch_assoc($query_four);
- $returned = explode('-', getfposts($row2['id']));
- if($row2['type'] == 4 && acc_status(getUsername()) > 1)
- {
- ?>
- <tr class="border item">
- <td class="icon lefttd"><a href="viewforum.php?forum=<?php echo $row2['id']; ?>"><img src="../img/forum/icons/mod.png"></a></td>
- <td class="frmname">
- <span class="bigtitle"><a href="viewforum.php?forum=<?php echo $row2['id']; ?>"><?php echo $row2['title']; ?></a> </span><br />
- <span class="desc"><?php echo stripslashes($row2['description']); ?></span>
- </td>
- <td class="num"><?php echo $returned[0]; ?></td>
- <td class="num">
- <?php
- //display post count for the individual forum
- echo $returned[1];
- ?>
- </td>
- <td class="righttd updated"><?php echo $extract_four['lastpost']; ?></td>
- </tr>
- <?php
- }
- elseif($row2['type'] == 5 && acc_status(getUsername()) > 2)
- {
- ?>
- <tr class="border item">
- <td class="icon lefttd"><a href="viewforum.php?forum=<?php echo $row2['id']; ?>"><img src="../img/forum/icons/a_mod.png"></a></td>
- <td class="frmname">
- <span class="bigtitle"><a href="viewforum.php?forum=<?php echo $row2['id']; ?>"><?php echo $row2['title']; ?></a> </span><br />
- <span class="desc"><?php echo stripslashes($row2['description']); ?></span>
- </td>
- <td class="num"><?php echo $returned[0]; ?></td>
- <td class="num">
- <?php
- //display post count for the individual forum
- echo $returned[1];
- ?>
- </td>
- <td class="righttd updated"><?php echo $extract_four['lastpost']; ?></td>
- </tr>
- <?php
- }
- else
- {
- ?>
- <tr class="border item">
- <td class="icon lefttd"><a href="viewforum.php?forum=<?php echo $row2['id']; ?>"><?php echo get_icon($row2['icon']); ?></a></td>
- <td class="frmname">
- <span class="bigtitle"><a href="viewforum.php?forum=<?php echo $row2['id']; ?>"><?php echo $row2['title']; ?></a> </span><br />
- <span class="desc"><?php echo stripslashes($row2['description']); ?></span>
- </td>
- <td class="num"><?php echo $returned[0]; ?></td>
- <td class="num">
- <?php
- //display post count for the individual forum
- echo $returned[1];
- ?>
- </td>
- <td class="righttd updated"><?php echo $extract_four['lastpost']; ?></td>
- </tr>
- <?php
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement