ungovernable
Active member
New to XenForo, still learning...
I'm trying to make an addon to query the database and output members postcount in specific forum
template message_user_info
file /library/anarchoi/postcount/test.php
Just missing the database connection now... How can i call XenForo functions to establish connection to the database with this code ?
Thanks !
I'm trying to make an addon to query the database and output members postcount in specific forum
template message_user_info
Code:
<xen:callback class="anarchoi_postcount_test" method="getTest">{$user.username}</xen:callback>
file /library/anarchoi/postcount/test.php
Code:
class anarchoi_postcount_test {
public static function getTest($content) {
// return $content;
$sql_query = "SELECT * FROM xf_thread WHERE username = '$content' AND node_id = '70'";
$query = mysql_query($sql_query);
$post_count = mysql_num_rows($query);
}
}
Just missing the database connection now... How can i call XenForo functions to establish connection to the database with this code ?
Thanks !