Hello,
I'm starting to use the Inspekt validation library.
Having trouble when combining with !isset.
if (!isset($input->get->program))
(btw, $input is a SuperCage)
Seems the IF statement is not evaluating.
I see I have to use "getRaw" to retrieve the variable. When I use that I get
a "Fatal error: Can't use method return value in write context"
if (!isset($input->get->getRaw('program')))
Anybody had this issue?
The page receives info thru GET and POST so I need to check which fields to
validate. Using isset seemed the way to go. Would appreciate any other
suggestions.