Help for this page
perl -MO=Deparse - my @things = $q->param('t') or $q->param('things'); ... $q->param('things') unless my(@things) = $q->param('t'); my(@things) = $q->param('t') || $q->param('things');
my @things = $q->param('t') ? $q->param('t') : $q->param('things');