Hi all,
I created a class which has to return an array.
My problem is I need to return 3 entries per record for example:
Code:
array( "2009-06-13", "John", "Doe";
"2009-06-13", "Paul", "Simon";
"2009-06-12", "Frank", "Herbert";
);
Can this be done? What is the syntax? Where is the documentation?
If this can't be done, How would you return this to a class without using a DB?
Many thanks!