Ok, I have an array of objects.
since my code is so long i'll send snippets
... making the array
// an array of objects
var $formObjects = Array();
... adding to the array
$formObjectSubmit = new efObjectSubmit($pName, $pValue);
$this->addToFormObjects($formObjectSubmit);
I know this all works as i can do a loop through and do a toString to output them all. as they all have a toString function and they all have an ID.
Anyway, i want to find an object by its ID and then run the toString() function on it.
How do i do this?