So you are passing both the threadid and styleid in the url? If so, you need to clean them prior to using them. example:
PHP Code:
$vbulletin->input->clean_array_gpc('r', array(
'threadid' => TYPE_UINT,
'styleid' => TYPE_UINT,
));
Then you can use $vbulletin->GPC['threadid'] or assign another variable to that value. example:
PHP Code:
$thread_id_inj = $vbulletin->GPC['threadid'];
Then, use query_first instead of query_readsince you are only expecting one result. Then you don't have to do a fetch_array (which you didn't do which is why it isn't working).
And don't echo. Assign the result to a variable and then insert the variable into the template where you want it.
You may have issues just using the pagetext as is (I can't remember). Perhaps use stripslashes or similar after you get it from the database.