I have been reading up all I can and as far as I understand from these:
http://www.vbulletin.com/docs/html/m...estandards_gpc
http://www.vbulletin.com/forum/showt...itional-fields
https://vborg.vbsupport.ru/showthread.php?t=98047
then this one-line (only), php direct eval code should work, readig POST variables or REQUEST data by calling from the browser: .../content.php?434-mytest&me=Jan
PHP Code:
$output = vB::$vbulletin->input->clean_gpc('r', 'me', TYPE_STR);
It DOES work; reads REQUEST data and outputs the name (Jan) to the browser. But it only works here if vB caching is disabled.
So if I misunderstood, can someone suggest a method for reading POST variables that does work?