I've got a board which pulls RSS feeds, and creates a post for each feed (from a single user.)
I'd like to be able to show that users postcount on the main page, so I can then show total posts, and total posts by RSS.
I've added the following as a plugin under "global_start"
However, wherever I place
$rssfeederposts
I just get
Showing up. Where am I going wrong?
I'd like to be able to show that users postcount on the main page, so I can then show total posts, and total posts by RSS.
I've added the following as a plugin under "global_start"
PHP Code:
$rssfeederposts = $db->query_first("
SELECT posts
FROM " . TABLE_PREFIX . "user
WHERE userid = 16
");
$rssfeederposts
I just get
Array
Comment