Hello
please tell me if it is possible that at the end of seven groups of different items (which were in each group filtered successively - with the PHP commands
$act = getItems('OS02','<', 3) ;
question('OS03', $act);
$imp = getItems('OS03','>', 2) ;
question('OS04', $imp);
$pl = getItems('OS04','==', 1) ;
if (count($pl) == 0) {
show('OS06');
} else {
question('OS05', $pl);
}
...
$plfam = getItems('OF03','==', 1) ;
if (count($plfam) == 0) {
show('OF05');
} else {
question('OF04', $plfam);
}
... and so on...
to remain only the most relevant)
to be displayed together on a text page at the beginning of a new (different but related) group of items ?