Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
This page comes from a search custom Button:
var popup = Runner.displayPopup( { url: "distintabase2_report.php?q=(macchina~equals~X302)", width: 900, height: 800,});
Inside this page I want to make a search on Descrizione field, keeping original search X302. I set up a session variable $_SESSION["mac"] = "X302";
How can I proceed setting up this where clause? I'm in report page.
Check this article:https://xlinesoft.com/phprunner/docs/dynamic_sql_query.htm
thanks i was able to solve adding
$query->addWhere("macchina.macchina='".$_SESSION["mac"]."'");
in After table initialized.