Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Where is a good starting point for learning the Zend Framework? The introduction from framework.zend.com left me wanting more, and really wasn't enough for me.

share|improve this question
1  
I'm a former Zend user who would really recommend trying out Django if you're making something like a blog which needs an admin - it saves a lot of time by doing a lot of the grunt work behind the scenes and you focus on more important details, comes in with a built-in admin, ORM that autogenerates models for you, built-in webserver, and more... – meder Feb 8 '10 at 15:22
Unfortunately the product I am working on in R&D (where I am doing my Engineering Co-op) is using the Zend Framework as a part of their new platform. I need to learn the Zend Framework for this reason. – Urda Feb 8 '10 at 15:39
1  
I would recommend also going to irc.freenode.net/zftalk if you're having issues and need "live" help :) The Pro Zend Framework Techniques book is not bad either ( Dont get the Beginning Zend Framework one .. it doesnt condone a lot of best practices, the Pro one is really the Beginning one ) – meder Feb 8 '10 at 15:59
I'm already idling in zftalk :) But fantastic note regardless! – Urda Feb 8 '10 at 16:07

4 Answers

up vote 5 down vote accepted

Survive The Deep End is a good guide to building apps using ZF. It covers the basic application structure (bootstrapping and configuration) the MVC design pattern, along with all the related ZF libraries (DB, Form, etc).

From the site:

The book was written to guide readers through the metaphorical "Deep End". It's the place you find yourself in when you complete a few tutorials and scan through the Reference Guide, where you are buried in knowledge up to your neck but without a clue about how to bind it all together effectively into an application. This take on the Zend Framework offers a survival guide, boosting your understanding of the framework and how it all fits together by following the development of a single application from start to finish. I'll even throw in a few bad jokes for free.

share|improve this answer
Yes it is down for me too, but I can't wait to see it! – Urda Feb 8 '10 at 16:13
Added links to google cache of the first 4 chapters. – Tim Lytle Feb 8 '10 at 16:38
I have also found this helpful: akrabat.com/zend-framework-tutorial – Urda Feb 8 '10 at 20:01

I also enjoy going to http://www.zendcasts.com/. John puts together some very helpful tutorials on how the framework works.

share|improve this answer

I originally started with the Akra's DevNotes tutorial way back. The book from Rob Allen, Zend Framework in Action, is pretty good as well if that's an option for you.

share|improve this answer

I'd say a good next step after reading the introduction, is to try to build a (simple) website with Zend Framework. That's really the best way of really getting to know the Zend Framework better.
Also, you can go through the more extensive Zend Manual.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.