Log in

View Full Version : Show username from a certain thread


stuartn
04-30-2012, 12:09 PM
Hopefully a simple bit of help required.

Say I wanted to show a simple text of the username with a post id = 1000000 i.e. the member posted our millionth post how would you do this ?

kh99
04-30-2012, 03:18 PM
You can of course find post 1000000 by going to showtrhead.php&p=1000000. You could also do a db query, like:

SELECT username FROM post WHERE postid=1000000


but it sounds like maybe you want code to automatically display it somewhere?

stuartn
04-30-2012, 04:37 PM
I understand that element what I struggle with is once I have the $result is how to get this into the vb system to show within the head template.

$million = $vbulletin->db->query_read("SELECT username FROM " . TABLE_PREFIX . "post WHERE postid = '5'");

--------------- Added 1335807558 at 1335807558 ---------------

I'm using no 5 in the above to see if it shows the right result.

kh99
04-30-2012, 04:47 PM
I think I'd create a plugin using hook parse_templates, and code like this:

$million = $vbulletin->db->query_first("SELECT username FROM " . TABLE_PREFIX . "post WHERE postid = '5'");
if (!empty($million))
{
vB_Template::preRegister('header', array('million' => $million['username']));
}


then in the header template, use {vb:raw million}.

stuartn
04-30-2012, 06:55 PM
Didn't work - got an error 'Call to undefined method vB_Database::query_read_first()'

so removed the 'first' and no error but its not showing up.

kh99
04-30-2012, 07:56 PM
Oops, yeah, it's just query_first. I fixed the above code.

stuartn
05-01-2012, 05:34 AM
Thanks thats working now.