The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#7
|
|||
|
|||
![]()
You also need to understand the difference between GET, POST and REQUEST. In general...
GET = Anything passed via a URL POST = Anything passed via an input (<input type=...etc>) REQUEST = All GET, POST and COOKIE data. Using these with vB and not cleaning them with $vbulletin->input->clean.. is bad practice as this could possibly introduce rogue code into the system. This code.. Code:
$vbulletin->input->clean_gpc('r', 'mystr', TYPE_STR); It's best to narrow down what you need with Code:
$vbulletin->input->clean_gpc('p', 'mystr', TYPE_STR); Code:
$vbulletin->input->clean_gpc('g', 'mystr', TYPE_STR); |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|