Ok, I am trying to assign an array by reference, something like this:
$this->Columns[0] = "test"; $this->Columns2[text] = &$this->Columns[0];
is this possible? PHP is telling me "Illegal Offset Type" for the second line.