Thread: Last forum post
View Single Post
  #2  
Old 6th November 2011, 14:56
nicukent nicukent is offline
Senior Member
 
Join Date: Sep 2009
P2P
Posts: 40
Default Reply your post
Incomplete columns,look:

Here is ok:


HTML Code:
"<td class=tabletitle align=left>Topic Title</td>".
  "<td class=tabletitle align=left>Posts</td>".
  "<td class=tabletitle align=left>Views</td>".
  "<td class=tabletitle align=left>Author</td>".
  "<td class=tabletitle align=left>Last Post</td>".

but here is not ok:

PHP Code:
print("<tr><td><a href=\"forums.php?action=viewtopic&topicid={$postsx["tid"]}&page=p{$postsx["pid"]}#{$postsx["pid"]}\"><b>{$postsx["subject"]}</b></a><br />in <a href=\"forums.php?action=viewforum&forumid={$postsx["forumid"]}\">{$postsx["name"]}</a></td>".
  
"<td align='right'>{$postsx["postcount"]}</td>".
  
"<td align='right'>{$postsx["views"]}</td>".
  
"<td><a href=userdetails.php?id={$postsx["usertopic"]}><b>{$postsx["tusername"]}</b></a></td>".
  
"<td>{$postsx["added"]}<br />by <a href=userdetails.php?id={$postsx["userpost"]}><b>{$postsx["username"]}</b></a></td></tr>"); 
Last post mising.......


Last edited by joeroberts; 6th November 2011 at 15:14. Reason: Please use code tags
Reply With Quote