I cannot use the value of a multidimensional array in my where clause using a table column value as the key.
DB->query("
SELECT
ID AS Key,
LastPostID
FROM table
WHERE {$Array[Key]['PostID']} < LastPostID
");
If I change the “Key” to a number then the query works but for some reason I cannot use the table column “ID” value as the key. Is this possible?