To add a array with a array, you can use array_combine(),but to use this function arrays size must be same. for example: for more information you can visit php.net/array_combine
I found two model two make to make category system with unlimited category one oft them is Tree traversal, and other is Adjacency list model. I will use adjacency list model because it is more understandable than tree traversal. In tree traversal model , insterting and editing categories is unclear , also this model is … Read more
