This topic is locked

_REQUEST parameters

1/17/2014 12:13:15 PM
PHPRunner General questions
I
ISelb author

Hi - I'm new to PHPRunner and trying to understand some things.
In the Sporting Template supplied with PHPRunner 7.0, there is custom code in Events. Specifically, spschedule->List page->Before display.
In this code, there are numerous references like,

line 7:

if ((@$_REQUEST["a"]=="showall") || (@$_REQUEST["value11"]==''))



line 10:

if(@$_REQUEST["value11"]!="" && @$_REQUEST["field1"]=="sMonth")



line 20:

if(@$_REQUEST["value21"]!="" || @$_REQUEST["value11"]!="" && @$_REQUEST["field1"]=="sYear" )


My question is, where are the REQUEST parameters: "a", "value11", "field1", "value21", ...?

And, how do I identify these parameters within PHPRunner?