I have for each user an association of possible codes through an association table.
I want, for a logged on user, to display all the values of those codes.
Here is the array:
$this->objCodes = $this->objUser->GetGroupCodeArray();
The first value of the array is:
$this->objCodes[0]->SignupCode;
However, I want to display all of the values (and of course be able to surround them with an <a> so that I can display the other Users with the same SignupCode value.
Thanks.