Quote:
Originally Posted by XdePloppy
With the previcious version I could use parameters using ?param1=lsdkfjkl¶m2=blabla
Is it posible to use it in this version?
|
Yes. Here is an example:
The link would be: newthread.php?do=form¶m1=lsdkfjkl¶m2=blabl a
In the plugin, you have to add:
PHP Code:
$vbulletin->input->clean_array_gpc('r', array(
'param1' => STR,
'param2' => STR
));
$param1 =& $vbulletin->GPC['param1'];
$param2 =& $vbulletin->GPC['param2'];