The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
I am trying to get a total of posts from the post table so that I can include that in my postbit template.
I have tried using the following in the postbit_start hook. Code:
$postcount=$db->query_first("SELECT COUNT(*) AS posts FROM post WHERE postid AND post.visible=1"); $totalposts=$postcount[posts]; Any ideas how to make this work? Thanks, Parker |
#2
|
|||
|
|||
![]()
Your query returns a number not an array.
|
#3
|
|||
|
|||
![]() Quote:
![]() Are you sure you want to run that query on every postbit? Best would be to run the query say at the start of the page (e.g. showthread_start) and then use the variable in the postbit. (Note: You may need to use the $_GLOBALS['postcount']['posts'] variable to access the data) |
#4
|
||||
|
||||
![]()
$thread[replycount] or $threadinfo[replycount]
One of those works, I can't remember which offhand. You don't need to run any queries. |
#5
|
|||
|
|||
![]()
Hang on...what postcount are you trying to get? The total forum postcount or the postcount for the thread?
Your SQL doesn't make much sense. [sql]SELECT COUNT(*) AS posts FROM post WHERE postid AND post.visible=1[/sql] ![]() If its the number of replies to the thread then the above post is correct. |
#6
|
|||
|
|||
![]()
That's a joke right?
--------------- Added [DATE]1196622101[/DATE] at [TIME]1196622101[/TIME] --------------- Nope, guess not, I just checked the madness from the API. Excuse me whilst I go and eat my monitor. |
#7
|
|||
|
|||
![]()
It is to get the number of replies in a thread. Let say you have a thread with 10 total posts. I want to post the $totalpost count in that thread so it will say Post 1 of 10 or 5 of 10, etc.
Thanks, Parker |
#8
|
||||
|
||||
![]()
$thread[replycount] then
![]() |
#9
|
|||
|
|||
![]()
Dean:
Thanks. To make the count correct though I created a hook in postbit_display_start and used $postcount=$thread[replycount]+1; Otherwise if there are 15 posts the 15th post shows up as Post 14 of 15. Thanks again. |
#10
|
||||
|
||||
![]()
Better than running a query for every post though
![]() |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|