Hello ,
i used this code to know number of (postid | threaid) , when user Browse it
PHP Code:
$vbulletin->input->clean_array_gpc('r', array(
'threadid' => TYPE_UINT ,
'postid' => TYPE_UINT
));
$thread_num = $vbulletin->GPC['threadid'];
$postid_num = $vbulletin->GPC['postid'];
works very good with Default links like this
PHP Code:
vb/showthread.php?p=22#post22
but my problem with vbseo hack , when links like that
only works (threadid) , but (postid) not work and show me Result "0"
Any solution, or another way to know the number of the Post Who user Browse it At this moment?!
Thank !