if we have set the format as below
———————————————
$f = array();
$f["column"] = "invdate";
$f["op"] = "eq";
$f["value"] = "2007-10-04";
$f["css"] = "'background-color':'Thistle'";
$f_conditions[] = $f;
———————————————
my question is:
may i set the dynamic value in $f["value"] ?
for expmple:
$f["value"] = "date('Y-m-d')";
1 Answers
Your Answer