help with php MVC problem

Posted by aprencai on Stack Overflow See other posts from Stack Overflow or by aprencai
Published on 2011-01-04T11:14:05Z Indexed on 2011/01/04 11:53 UTC
Read the original article Hit count: 128

Filed under:
|

hello, I have groups on my site and the urls have the following hierarchy:

/ groups / {id_group} /

/ groups / {id_group} / news

/ groups / {id_group} / gallery

/ groups / {id_group} / events

/ groups / {id_group} / events / {id_event}

/ groups / {id_group} / events / {id_event} / news

/ groups / {id_group} / events / {id_event} / gallery

/ groups / {id_group} / events / {id_event} / news

As you can see a group can have news, gallery, etc. and in turn an event that is in a group can also have news, gallery, etc.

How to implement this approach in a framework without specifying any specific one?, ie I would like some guidance on what would have modules, controllers, etc.

Thanks.

© Stack Overflow or respective owner

Related posts about php

Related posts about mvc