Not being used to php, I'm facing an issue with accessing arrays and its sub data.
$form['signatories']['signatory1'] = array(...);
I must create a "pointer" to the array created in the line above, I expected the following to work:
$cluster = $form['signatories']['signatory1'];
Testing I'm accessing the same "memory space" proves I'm wrong:
$cluster['signatory_name'] = array(...)
// $form['signatories']['signatory1'] has no elements
// $cluster has a sub element
Like cluster is a copy of the array I want it to point to.
How should I proceed? I tried using the "&" reference sign as mentioned in some blog, but that didn't help.
Thanks! J.