![]() |
Multi-Dimenstional Table Library? - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: Multi-Dimenstional Table Library? (/showthread.php?tid=66954) |
Multi-Dimenstional Table Library? - johnsmith - 12-22-2016 Hello, I am trying to create the following table/array: A. Field1, Field2, Field3, Field4, Field5 B. Under Field1 we have Subfield11, Subfield12, Subfield13, Subfield14, Subfield15 Under Field2, we also have Subfield21, Subfield22, ...Subfield25 etc. until Field5 C. Under Subfields11 we have Step111, Step112, Step113, Step114, Step115 Under Subfield12 we have Step121, Step122, Step 123, Step124, Step125. etc. until Subfield55 The names Field1-Field5, Subfield11-Subfield55, and Step111-Step555 can be user-defined (and may even be phrases, not single words). Is there a Codeigniter library for this? I already have something like this, with GUI and database saving/editing, but it was written in Core PHP, and I do not want to go that route. RE: Multi-Dimenstional Table Library? - PaulD - 12-22-2016 I think you need CI5, especially the MRI functionality. You can read about it here https://forum.codeigniter.com/thread-64843.html Personally I am looking forward to it's release. RE: Multi-Dimenstional Table Library? - InsiteFX - 12-22-2016 CodeIgniter Nested Categories RE: Multi-Dimenstional Table Library? - johnsmith - 12-26-2016 (12-22-2016, 03:31 PM)InsiteFX Wrote: CodeIgniter Nested Categories Is that page complete? It seems to have stopped at "Adjacency Lists". Anyway, for now I will use GroceryCRUD for manual editing of entries. I will handle the whole said module later. RE: Multi-Dimenstional Table Library? - InsiteFX - 12-27-2016 Click on the link at the bottom - CodeIgniter Adjacency List, will take you to GitHub RE: Multi-Dimenstional Table Library? - marksman - 12-27-2016 (12-22-2016, 02:28 PM)PaulD Wrote: I think you need CI5, especially the MRI functionality. where is the like button here? lol RE: Multi-Dimenstional Table Library? - johnsmith - 12-27-2016 (12-27-2016, 05:24 AM)InsiteFX Wrote: Click on the link at the bottom - CodeIgniter Adjacency List, will take you to GitHub That's akin to what I was looking for. I'll add to your Rep now, thanks. |