Hi
i have a global variable, which is an array. In index 2 i stored a field name that i want to use in a grid in the select statement. Like that:
SELECT * FROM table WHERE (`[rw_fields][2]` <> 0)
In [rw_fields][2] the fieldname in the table is stored, f.e. ‘dbvalue’. So the Select Statement should be like that:
SELECT * FROM table WHERE (`dbvalue` <> 0)
Question: How can i put the content of my array into a select Statement?
Best regards
Steve