Looking for a framework with similar architecture to mine.
Moderator: General Moderators
Looking for a framework with similar architecture to mine.
Got the reply. /Close please.
Last edited by Chris30 on Mon Jan 21, 2013 1:40 pm, edited 1 time in total.
- Christopher
- Site Administrator
- Posts: 13596
- Joined: Wed Aug 25, 2004 7:54 pm
- Location: New York, NY, US
Re: Looking for a framework with similar architecture to min
None that I know work exactly like that. I think the recommendation of Laravel over CodeIgniter is a good one if you are going to a new framework. There are many good ones around.Chris30 wrote:QUESTION: Which framework architecturally works similar to this? (It can be a big or a minimal framework.) Also, does such architecture is old and I really have to move on?
The couple of the thing I notice about the code above are the direct access to $_GET/$_POST and maybe an excess use of static classes.
(#10850)
Re: Looking for a framework with similar architecture to min
Hi,Christopher wrote:None that I know work exactly like that. I think the recommendation of Laravel over CodeIgniter is a good one if you are going to a new framework. There are many good ones around.Chris30 wrote:QUESTION: Which framework architecturally works similar to this? (It can be a big or a minimal framework.) Also, does such architecture is old and I really have to move on?
The couple of the thing I notice about the code above are the direct access to $_GET/$_POST and maybe an excess use of static classes.
That's a very old framework. There are many more mistakes like that all around.
I guess I'll start with Code Igniter since it seems the most closest to my current framework.
Thank you.