Page 1 of 1

YAPMF (Yet Another PHP MVC Framework)

Posted: Wed Jul 01, 2009 6:55 pm
by jack_indigo
Here's yet another PHP-based MVC framework. At this point it's like a new one arrives every 2 months:

http://tkself.org/

I think the way it does its front controllers is more complex than it needs to be. Instead of how this framework does it, I prefer to just create a folder path like:

controllers/Users/LoginUser.php

and then the URL would automatically work like:

http://example.com/users/login-user/

And you could pass it args like:

http://example.com/widgets/view-widget/bolts/4023

Where controllers/Widgets/ViewWidgets.php would automatically receive a global constant array $ARG as: $ARG[0] = 'bolts', $ARG[1] = '4023'

Re: YAPMF (Yet Another PHP MVC Framework)

Posted: Wed Jul 01, 2009 10:37 pm
by Christopher
I get a Notice on line 11 in index.php. It seems like TK_SELF_URI is not defined. I fixed that but the demo only echos a line of text?

At first glance the layout looks a little non-standard.

Re: YAPMF (Yet Another PHP MVC Framework)

Posted: Wed Jul 29, 2009 8:28 pm
by jack_indigo
This is actually getting funnier by the week. Yet another PHP MVC framework!

http://doophp.com/

And what's even more humorous is that someone wanted to call their framework "doofp".

Re: YAPMF (Yet Another PHP MVC Framework)

Posted: Thu Jul 30, 2009 3:34 am
by marty pain
I have actually never used any of the frameworks, as I really like being in total control of the software I write. I still use the MVC pattern, but I just implement it manually.

I doubt with my current job I will ever get to give one ago, and personal time dosen't exist at the moment, so I was wondering....
Why do people use these? What are the benefits and do people think that all coding will end up utilising a framework in the future?

Answers on a post card too........ :D