I have been coding my PHP applications in Notepad. I want to take it a step up and do it professional, and as far as I can tell using the Zend Framework is where to start. I have been reading the documentation and quick start and a few tutorials but I am still completely lost.
- Is Zend on your local machine or on the remote server?
- Is the "MVC" model different files? A file for the GUI, A File for the Functions used to get data and the database?
- Is there a tutorial that REALLY goes into detail about how you can accomplish things with Zend Framework, and how to get started?
The reason I am asking this is because the tutorials I have been reading still leave me confused and I am very anxious to start doing this professionally. I would like to utilize this new set of tools! Please help :)
Zend is PHP code, therefore it runs on the webserver.
Professionally written PHP applications do not require a framework. Frameworks exist for people that have been doing some of the same repetitive tasks repetitively and desire to change their own workflow.
You should start by researching the "MVC design pattern" in general (as it applies to many things outside of PHP) and get deeper into the concepts of Professional PHP before starting with such a large framework as Zend Framework.
Use a framework because you know you need to, and not for any other reason.
zendcasts.com is doing very good Zend Frameword casts. It's really a good place to start.
This tutorial is definitely worth a look, as it walks you through the creation of a fully-functioning web application using ZF 1.8 (at time of writing). The author also updates it each time new versions of the ZF are released.
http://akrabat.com/zend-framework-tutorial/
Start with the official webinars. Very easy to digest and a requirement for a beginner.
The quickstart tutorial is a great way to begin, maybe read it again? There's also this one:
http://www.cyberciti.biz/tips/zend-framework-php-tutorial.html
From the above link:
And here's a list of ZF tutorials for beginners:
Introduction and database Tutorial: http://akrabat.com/zend-framework-tutorial/
Source Files here
Authentication Tutorial: http://akrabat.com/zend-auth-tutorial/
Source Files here
Forms Tutorial: http://akrabat.com/zend-framework/simple-zend_form-example/
Source Files here
File Upload Tutorial: http://akrabat.com/zend-framework/simple-zend_form-file-upload-example-revisited/
Source Files here
Layout Tutorial: http://akrabat.com/zend-framework/simple-zend_layout-example/
Source Files here
I would make sure they're not for much earlier versions of the ZF before diving in.