If i have:
print_r($request->getRequestVars());
that prints out:
Array ( [n] => Coors [s] => 3 )
how would i print out coors?
echo $request->getRequestVars()->n;
is not working, and i've tried several other things. I know this is super basic but it's frustrating me
getRequestVars()returns an array, not an object.