PHP definitely has 3D / Multidimensional arrays, and I can create them easily enough. I just wanted an easy to perform append. I could read back the 3D array from the DB, add my new one, and then write back, but that is a bit clunky.

I'm looking for something like array_merge (but that one overwrites keys if they are named the same)...
I'd
much prefer to use a new table and add records, 1 per entry... but I am working within a very bib and popular system, and that is also a secondary option (adding new tables). I may have to do one of the things I'm trying to avoid (read full array, add, write back / add another table), but only as a last resort.
