Dear support team,
according to the example InputAndExport-PDF (under https://github.com/koolphp/koolreport/blob/master/examples/reports/advanced/input_and_export/InputAndExport_pdf.view.php) I can echo the value of a SINGLE SELECT OPTION field (like customer name) without any problem:
//Single Select Option field $customerName = $this->params["customer"]; echo "<br/>".$customerName."<br/>";
But if my dynamic filter filed a MULTI SELECT OPTION field I get only the output "Array" in the PDF document instead of, for example, multiple selected cities!
//MultipleSelect Option field $city= $this->params["customerCity"]; echo "<br/>".$city."<br/>";
How can I echo the values of these multiple select options?
Kind regards,