[PHP] PHP Books

2001-04-20 Thread Michael C

Hello
Could I get a recommendation on some good starting PHP books?
Thanks

-- 
Later Days:)
Michael Clesceri

""Perfection (in design) is achieved not when there is nothing more to add, but rather 
when there is nothing more to take away."



[PHP-CVS] What is CVS?

2001-04-20 Thread Michael C

Forgive me for asking again
What is CVS?
I am really new to PHP and just want to make sure I am looking at the right list
Thanks for your information in advance

-- 
Later Days:)
Michael Clesceri

""Perfection (in design) is achieved not when there is nothing more to add, but rather 
when there is nothing more to take away."



[PHP] Architecture patterns in PHP

2008-12-27 Thread Michael C. Yates

Hey,

How do you structure your web applications? I am thinking in terms of 
separating presentation  and logic. How is that done in PHP? And how 
many architecture patterns are there?



Thanks


Micheal C. Yates


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Architecture patterns in PHP

2008-12-27 Thread Michael C. Yates

dude, whatever


Daniel Brown wrote:

On Sat, Dec 27, 2008 at 18:40, Michael C. Yates  wrote:
[snip!]

Micheal C. Yates


You mis-spelled your name, Michael.



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Architecture patterns in PHP

2008-12-28 Thread Michael C. Yates

Nathan Nobbe wrote:




Hey,

How do you structure your web applications? I am thinking in terms of 
separating presentation  and logic. How is that done in PHP?


mvc is pretty popular, but php is so flexible you often don't need it 
for smaller applications.


For example, if you take a page-controller approach, a php app is dead 
simple.  You have a seperate entery point for evrything; login.php, 
register.php, etc could be considered controllers, then all your common 
logic comes in via some includes, hopefully files outside the webroot.  
then you have some template directory w/ files that are a mixture of php 
and html(for example).  your 'controller' files include the library 
code, hit the db (if necc.) and then stuff data into the templates for 
output.


if you want to see an exmple if a more traditional mvc there are scads 
of open source frameworks out there which use a front controller 
approach. Code igniter is really straight forward, you can probly learn 
quickly from it.





Thanks for the reply.

Does anyone know of a good written guide about patterns like Front 
controller, Page Controller, MVC etc. and how they are implemented in PHP?


I found something about these patterns in a guide on MSDN called 
Enterprise Solution Patterns Using Microsoft .NET 
(http://msdn.microsoft.com/library/ms998516(en-us).aspx).


It describes MVC, Page Controller, Front Controller and a lot of other 
patterns for ASP.NET applications.


Something like this for PHP would be cool.


Thanks

Michael C. Yates


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php