SlideShare a Scribd company logo
Getting Up & Running with
Agenda

• Overview
• MVC
• Components
• Environment setup
• Your first Zend Framework project
• Resources
• QA
What is framework ?


• Toolbox
• Blueprint
• Skeleton
Why Zend Framework

•Maintain by PHP Company
•Open Source
•Flexible Architecture
• ZF Certification
•Partner with
Zend Framework – Architecture

• MVC design pattern
• Front Controller pattern
• Component Based
• Loosely couple
Zend Components


                    Zend_Validate

                    Zend_Auth
Zend_Acl
  ZEND_FORM     Zend_Session
Zend web services – Components




                                 ZEND_GDATA
                                 ZEND_FEED
Environment Setup



• Requirements
   1.   PHP 5.x
   2.   Web server with mod_rewrite enabled
Environment Setup (Continued…)

• Zend tool setup (Ubuntu way)

       sudo apt-get install zend-framework


       ; include_path=${include_path} “:/path/to/libzend-
       framework-php”
       // uncomment in /etc/php5/conf.d/zend-
       framework.ini
Environment Setup (Continued…)

• Zend tool setup (Windows way)
Environment Setup (Continued…)
Environment Setup (Continued…)
Environment Setup (Continued…)
Environment Setup (Continued…)
Environment Setup (Continued…)


• Zend tool setup verification



   zf show version
           Zend Framework Version: 1.11.10
Your first Zend Framework project




zf create project {project-name}
Your first Zend Framework project
Project structure
Create Virtual host


<VirtualHost *:80>
       ServerName local.sitename.com
       DocumentRoot /var/www/zf-project/public
       <Directory "/var/www/zf-project/public">
              AllowOverride All
       </Directory>
</VirtualHost>
Tada!
Connecting to database



resources.db.adapter = "Pdo_Mysql”
resources.db.params.host = ”HostName"
resources.db.params.username = ”UserName"
resources.db.params.password = ”Password"
resources.db.params.dbname = ”DbName"
Let’s have a CRUD operation




Create
Retrieve
Update
Delete
Controller




zf create controller {name}
Controller

<?php
class AlbumController extends Zend_Controller_Action{
    public function init(){
        /* Initialize action controller here */
    }
    public function indexAction(){
           /* Your code goes here */
    }
}
Model




zf create model {model-name}
Model

<?php
class Application_Model_Albums extends Zend_Db_Table_Abstract
{
   protected $_name = 'albums';

    public function fName() {
          /* Your code goes here */
    }
}
Crud operation

           public function addAlbum($data) {
                     $this->insert($data);
           }

           public function updateAlbum($data, $where) {
                     $this->update($data, $where);
           }

           public function deleteAlbum($where) {
                     $this->delete($where);
           }
Zend Frameworks Gems 


• Web services
   1.   Google
   2.   Amazon
   3.   Flickr
   4.   Yahoo
   5.   More….
Zend web service (flickr)
Zend web service (flickr)




public function flickrAction(){
     $flickr = new Zend_Service_Flickr(’YourAPIKey');
     $this->view->results = $flickr->tagSearch('worldcup’);
}
Zend web service (flickr)


<ul>
  <?php foreach ($this->results as $result){
        $photo = $result->Square; ?>
        <li><a href="<?php echo $photo->ClickUri ?>">
                  <img src="<?php echo $photo->uri ?>" alt="image"/>
             </a>
        </li>
  <?php } ?>
</ul>
Resources




•   http://akrabat.com/zend-framework-tutorial/
•   http://net.tutsplus.com/tutorials/php/zend-framework-from-scratch/
•   http://goo.gl/fQLL6
Who we are


Saidur Rahman Bijon   Shoriful Islam Ronju
     @somewherein                  @leevio
Questions & Answers




   Any Question?

More Related Content

What's hot (19)

Using the new WordPress REST API
Using the new WordPress REST APIUsing the new WordPress REST API
Using the new WordPress REST API
Caldera Labs
 
Mojolicious. Веб в коробке!
Mojolicious. Веб в коробке!Mojolicious. Веб в коробке!
Mojolicious. Веб в коробке!
Anatoly Sharifulin
 
深入淺出 MVC
深入淺出 MVC深入淺出 MVC
深入淺出 MVC
Jace Ju
 
Mojolicious - A new hope
Mojolicious - A new hopeMojolicious - A new hope
Mojolicious - A new hope
Marcus Ramberg
 
Assetic (Zendcon)
Assetic (Zendcon)Assetic (Zendcon)
Assetic (Zendcon)
Kris Wallsmith
 
Building Web Apps with Express
Building Web Apps with ExpressBuilding Web Apps with Express
Building Web Apps with Express
Aaron Stannard
 
Reusable bootstrap resources zend con 2010
Reusable bootstrap resources   zend con 2010Reusable bootstrap resources   zend con 2010
Reusable bootstrap resources zend con 2010
Hector Virgen
 
I use drupal / 我是 OO 師,我用 Drupal
I use drupal / 我是 OO 師,我用 DrupalI use drupal / 我是 OO 師,我用 Drupal
I use drupal / 我是 OO 師,我用 Drupal
Chris Wu
 
CodeIgniter 3.0
CodeIgniter 3.0CodeIgniter 3.0
CodeIgniter 3.0
Phil Sturgeon
 
Mojolicious: what works and what doesn't
Mojolicious: what works and what doesn'tMojolicious: what works and what doesn't
Mojolicious: what works and what doesn't
Cosimo Streppone
 
Mojolicious
MojoliciousMojolicious
Mojolicious
Marcos Rebelo
 
Mojolicious, real-time web framework
Mojolicious, real-time web frameworkMojolicious, real-time web framework
Mojolicious, real-time web framework
taggg
 
Dance for the puppet master: G6 Tech Talk
Dance for the puppet master: G6 Tech TalkDance for the puppet master: G6 Tech Talk
Dance for the puppet master: G6 Tech Talk
Michael Peacock
 
Mojolicious - Perl Framework for the Real-Time Web (Lightning Talk)
Mojolicious - Perl Framework for the Real-Time Web (Lightning Talk)Mojolicious - Perl Framework for the Real-Time Web (Lightning Talk)
Mojolicious - Perl Framework for the Real-Time Web (Lightning Talk)
Dotan Dimet
 
Assetic (OSCON)
Assetic (OSCON)Assetic (OSCON)
Assetic (OSCON)
Kris Wallsmith
 
Presentation
PresentationPresentation
Presentation
Manav Prasad
 
Caldera Learn - LoopConf WP API + Angular FTW Workshop
Caldera Learn - LoopConf WP API + Angular FTW WorkshopCaldera Learn - LoopConf WP API + Angular FTW Workshop
Caldera Learn - LoopConf WP API + Angular FTW Workshop
CalderaLearn
 
Mojolicious on Steroids
Mojolicious on SteroidsMojolicious on Steroids
Mojolicious on Steroids
Tudor Constantin
 
Ant
AntAnt
Ant
Manav Prasad
 
Using the new WordPress REST API
Using the new WordPress REST APIUsing the new WordPress REST API
Using the new WordPress REST API
Caldera Labs
 
Mojolicious. Веб в коробке!
Mojolicious. Веб в коробке!Mojolicious. Веб в коробке!
Mojolicious. Веб в коробке!
Anatoly Sharifulin
 
深入淺出 MVC
深入淺出 MVC深入淺出 MVC
深入淺出 MVC
Jace Ju
 
Mojolicious - A new hope
Mojolicious - A new hopeMojolicious - A new hope
Mojolicious - A new hope
Marcus Ramberg
 
Building Web Apps with Express
Building Web Apps with ExpressBuilding Web Apps with Express
Building Web Apps with Express
Aaron Stannard
 
Reusable bootstrap resources zend con 2010
Reusable bootstrap resources   zend con 2010Reusable bootstrap resources   zend con 2010
Reusable bootstrap resources zend con 2010
Hector Virgen
 
I use drupal / 我是 OO 師,我用 Drupal
I use drupal / 我是 OO 師,我用 DrupalI use drupal / 我是 OO 師,我用 Drupal
I use drupal / 我是 OO 師,我用 Drupal
Chris Wu
 
Mojolicious: what works and what doesn't
Mojolicious: what works and what doesn'tMojolicious: what works and what doesn't
Mojolicious: what works and what doesn't
Cosimo Streppone
 
Mojolicious, real-time web framework
Mojolicious, real-time web frameworkMojolicious, real-time web framework
Mojolicious, real-time web framework
taggg
 
Dance for the puppet master: G6 Tech Talk
Dance for the puppet master: G6 Tech TalkDance for the puppet master: G6 Tech Talk
Dance for the puppet master: G6 Tech Talk
Michael Peacock
 
Mojolicious - Perl Framework for the Real-Time Web (Lightning Talk)
Mojolicious - Perl Framework for the Real-Time Web (Lightning Talk)Mojolicious - Perl Framework for the Real-Time Web (Lightning Talk)
Mojolicious - Perl Framework for the Real-Time Web (Lightning Talk)
Dotan Dimet
 
Caldera Learn - LoopConf WP API + Angular FTW Workshop
Caldera Learn - LoopConf WP API + Angular FTW WorkshopCaldera Learn - LoopConf WP API + Angular FTW Workshop
Caldera Learn - LoopConf WP API + Angular FTW Workshop
CalderaLearn
 

Viewers also liked (10)

Hands on workshop on word press
Hands on workshop on word pressHands on workshop on word press
Hands on workshop on word press
Mohammad Shoriful Islam Ronju
 
1. momento individual julieth chacón gestion del riesgo
1. momento individual julieth chacón gestion del riesgo1. momento individual julieth chacón gestion del riesgo
1. momento individual julieth chacón gestion del riesgo
Julieth chacón
 
Differentiation
DifferentiationDifferentiation
Differentiation
Valerie Buchanan
 
Building mobile apps using Phonegap
Building mobile apps using PhonegapBuilding mobile apps using Phonegap
Building mobile apps using Phonegap
Mohammad Shoriful Islam Ronju
 
1. momento individual julieth chacón gestion del riesgo
1. momento individual julieth chacón gestion del riesgo1. momento individual julieth chacón gestion del riesgo
1. momento individual julieth chacón gestion del riesgo
Julieth chacón
 
Basics of public speaking
Basics of public speakingBasics of public speaking
Basics of public speaking
partin21
 
Adquisicion de datos automatizacion
Adquisicion de datos automatizacionAdquisicion de datos automatizacion
Adquisicion de datos automatizacion
Christian Val
 
2013_MMU_Compendium-of-case-studies
2013_MMU_Compendium-of-case-studies2013_MMU_Compendium-of-case-studies
2013_MMU_Compendium-of-case-studies
Jasim Ahmed
 
1. momento individual julieth chacón gestion del riesgo
1. momento individual julieth chacón gestion del riesgo1. momento individual julieth chacón gestion del riesgo
1. momento individual julieth chacón gestion del riesgo
Julieth chacón
 
1. momento individual julieth chacón gestion del riesgo
1. momento individual julieth chacón gestion del riesgo1. momento individual julieth chacón gestion del riesgo
1. momento individual julieth chacón gestion del riesgo
Julieth chacón
 
Basics of public speaking
Basics of public speakingBasics of public speaking
Basics of public speaking
partin21
 
Adquisicion de datos automatizacion
Adquisicion de datos automatizacionAdquisicion de datos automatizacion
Adquisicion de datos automatizacion
Christian Val
 
2013_MMU_Compendium-of-case-studies
2013_MMU_Compendium-of-case-studies2013_MMU_Compendium-of-case-studies
2013_MMU_Compendium-of-case-studies
Jasim Ahmed
 

Similar to Getting up and running with Zend Framework (20)

Introduction to Zend framework
Introduction to Zend framework Introduction to Zend framework
Introduction to Zend framework
Matteo Magni
 
Zend Framework 1.9 Setup & Using Zend_Tool
Zend Framework 1.9 Setup & Using Zend_ToolZend Framework 1.9 Setup & Using Zend_Tool
Zend Framework 1.9 Setup & Using Zend_Tool
Gordon Forsythe
 
Z-Ray: A customizable development tool belt (Zendcon 2016)
Z-Ray: A customizable development tool belt (Zendcon 2016)Z-Ray: A customizable development tool belt (Zendcon 2016)
Z-Ray: A customizable development tool belt (Zendcon 2016)
Mathew Beane
 
関西PHP勉強会 php5.4つまみぐい
関西PHP勉強会 php5.4つまみぐい関西PHP勉強会 php5.4つまみぐい
関西PHP勉強会 php5.4つまみぐい
Hisateru Tanaka
 
What's New In Laravel 5
What's New In Laravel 5What's New In Laravel 5
What's New In Laravel 5
Darren Craig
 
The Solar Framework for PHP 5 (2010 Confoo)
The Solar Framework for PHP 5 (2010 Confoo)The Solar Framework for PHP 5 (2010 Confoo)
The Solar Framework for PHP 5 (2010 Confoo)
Paul Jones
 
symfony on action - WebTech 207
symfony on action - WebTech 207symfony on action - WebTech 207
symfony on action - WebTech 207
patter
 
Building Web Services with Zend Framework (PHP Benelux meeting 20100713 Vliss...
Building Web Services with Zend Framework (PHP Benelux meeting 20100713 Vliss...Building Web Services with Zend Framework (PHP Benelux meeting 20100713 Vliss...
Building Web Services with Zend Framework (PHP Benelux meeting 20100713 Vliss...
King Foo
 
Zend Framework 2 - Basic Components
Zend Framework 2  - Basic ComponentsZend Framework 2  - Basic Components
Zend Framework 2 - Basic Components
Mateusz Tymek
 
Decoupled Libraries for PHP
Decoupled Libraries for PHPDecoupled Libraries for PHP
Decoupled Libraries for PHP
Paul Jones
 
Zend framework
Zend frameworkZend framework
Zend framework
Prem Shankar
 
Zf2
Zf2Zf2
Zf2
Prashant Marathe
 
Zend
ZendZend
Zend
Mohamed Ramadan
 
Fatc
FatcFatc
Fatc
Wade Arnold
 
Zend Framework Study@Tokyo #2
Zend Framework Study@Tokyo #2Zend Framework Study@Tokyo #2
Zend Framework Study@Tokyo #2
Shinya Ohyanagi
 
Playing with php_on_azure
Playing with php_on_azurePlaying with php_on_azure
Playing with php_on_azure
CEDRIC DERUE
 
Global Windows Azure Bootcamp : Cedric Derue playing with php on azure. (spon...
Global Windows Azure Bootcamp : Cedric Derue playing with php on azure. (spon...Global Windows Azure Bootcamp : Cedric Derue playing with php on azure. (spon...
Global Windows Azure Bootcamp : Cedric Derue playing with php on azure. (spon...
MUG-Lyon Microsoft User Group
 
Foundations of Zend Framework
Foundations of Zend FrameworkFoundations of Zend Framework
Foundations of Zend Framework
Adam Culp
 
Zf2 phpquebec
Zf2 phpquebecZf2 phpquebec
Zf2 phpquebec
mkherlakian
 
Zend Framework Foundations
Zend Framework FoundationsZend Framework Foundations
Zend Framework Foundations
Chuck Reeves
 
Introduction to Zend framework
Introduction to Zend framework Introduction to Zend framework
Introduction to Zend framework
Matteo Magni
 
Zend Framework 1.9 Setup & Using Zend_Tool
Zend Framework 1.9 Setup & Using Zend_ToolZend Framework 1.9 Setup & Using Zend_Tool
Zend Framework 1.9 Setup & Using Zend_Tool
Gordon Forsythe
 
Z-Ray: A customizable development tool belt (Zendcon 2016)
Z-Ray: A customizable development tool belt (Zendcon 2016)Z-Ray: A customizable development tool belt (Zendcon 2016)
Z-Ray: A customizable development tool belt (Zendcon 2016)
Mathew Beane
 
関西PHP勉強会 php5.4つまみぐい
関西PHP勉強会 php5.4つまみぐい関西PHP勉強会 php5.4つまみぐい
関西PHP勉強会 php5.4つまみぐい
Hisateru Tanaka
 
What's New In Laravel 5
What's New In Laravel 5What's New In Laravel 5
What's New In Laravel 5
Darren Craig
 
The Solar Framework for PHP 5 (2010 Confoo)
The Solar Framework for PHP 5 (2010 Confoo)The Solar Framework for PHP 5 (2010 Confoo)
The Solar Framework for PHP 5 (2010 Confoo)
Paul Jones
 
symfony on action - WebTech 207
symfony on action - WebTech 207symfony on action - WebTech 207
symfony on action - WebTech 207
patter
 
Building Web Services with Zend Framework (PHP Benelux meeting 20100713 Vliss...
Building Web Services with Zend Framework (PHP Benelux meeting 20100713 Vliss...Building Web Services with Zend Framework (PHP Benelux meeting 20100713 Vliss...
Building Web Services with Zend Framework (PHP Benelux meeting 20100713 Vliss...
King Foo
 
Zend Framework 2 - Basic Components
Zend Framework 2  - Basic ComponentsZend Framework 2  - Basic Components
Zend Framework 2 - Basic Components
Mateusz Tymek
 
Decoupled Libraries for PHP
Decoupled Libraries for PHPDecoupled Libraries for PHP
Decoupled Libraries for PHP
Paul Jones
 
Zend Framework Study@Tokyo #2
Zend Framework Study@Tokyo #2Zend Framework Study@Tokyo #2
Zend Framework Study@Tokyo #2
Shinya Ohyanagi
 
Playing with php_on_azure
Playing with php_on_azurePlaying with php_on_azure
Playing with php_on_azure
CEDRIC DERUE
 
Global Windows Azure Bootcamp : Cedric Derue playing with php on azure. (spon...
Global Windows Azure Bootcamp : Cedric Derue playing with php on azure. (spon...Global Windows Azure Bootcamp : Cedric Derue playing with php on azure. (spon...
Global Windows Azure Bootcamp : Cedric Derue playing with php on azure. (spon...
MUG-Lyon Microsoft User Group
 
Foundations of Zend Framework
Foundations of Zend FrameworkFoundations of Zend Framework
Foundations of Zend Framework
Adam Culp
 
Zend Framework Foundations
Zend Framework FoundationsZend Framework Foundations
Zend Framework Foundations
Chuck Reeves
 

Recently uploaded (20)

For ssrvm school Admission Campaign.pptx
For ssrvm school Admission Campaign.pptxFor ssrvm school Admission Campaign.pptx
For ssrvm school Admission Campaign.pptx
ArunTYltp
 
NATIONALISM IN EUROPE class 10 best ppt.pdf
NATIONALISM IN EUROPE class 10 best ppt.pdfNATIONALISM IN EUROPE class 10 best ppt.pdf
NATIONALISM IN EUROPE class 10 best ppt.pdf
leenamakkar79
 
material-17438335 to the third floor in 47-gsms.pptx
material-17438335 to the third floor in 47-gsms.pptxmaterial-17438335 to the third floor in 47-gsms.pptx
material-17438335 to the third floor in 47-gsms.pptx
JyotirmayNirankari
 
Software Development Business Plan1.pptx
Software Development Business Plan1.pptxSoftware Development Business Plan1.pptx
Software Development Business Plan1.pptx
vkprintingsolution
 
Traditional Medicine aDRTYSRTYSRTnd HIV.ppt
Traditional Medicine aDRTYSRTYSRTnd HIV.pptTraditional Medicine aDRTYSRTYSRTnd HIV.ppt
Traditional Medicine aDRTYSRTYSRTnd HIV.ppt
XolaniRadebe7
 
Handling Exceptions and waits in selenium.pptx
Handling Exceptions and waits in selenium.pptxHandling Exceptions and waits in selenium.pptx
Handling Exceptions and waits in selenium.pptx
Madhuri Lonikar
 
cis1-Project-Ch6b-Laptop Mac,Chrome,Windows-Portillo-Osmin.ppt.pptx
cis1-Project-Ch6b-Laptop Mac,Chrome,Windows-Portillo-Osmin.ppt.pptxcis1-Project-Ch6b-Laptop Mac,Chrome,Windows-Portillo-Osmin.ppt.pptx
cis1-Project-Ch6b-Laptop Mac,Chrome,Windows-Portillo-Osmin.ppt.pptx
slkfam510
 
History of Entomology and current updates of entomology.pptx
History of Entomology and current updates of entomology.pptxHistory of Entomology and current updates of entomology.pptx
History of Entomology and current updates of entomology.pptx
Neelesh Raipuria
 
Top Business Schools in Delhi For Quality Education
Top Business Schools in Delhi For Quality EducationTop Business Schools in Delhi For Quality Education
Top Business Schools in Delhi For Quality Education
top10privatecolleges
 
sorcesofdrugs-160228074 56 4246643544 (3).ppt
sorcesofdrugs-160228074 56 4246643544 (3).pptsorcesofdrugs-160228074 56 4246643544 (3).ppt
sorcesofdrugs-160228074 56 4246643544 (3).ppt
IndalSatnami
 
美国学位证(纽约州立大学德里分校毕业证明)SUNYD文凭证书复刻
美国学位证(纽约州立大学德里分校毕业证明)SUNYD文凭证书复刻美国学位证(纽约州立大学德里分校毕业证明)SUNYD文凭证书复刻
美国学位证(纽约州立大学德里分校毕业证明)SUNYD文凭证书复刻
Taqyea
 
Latest Questions & Answers | Prepare for H3C GB0-961 Certification
Latest Questions & Answers | Prepare for H3C GB0-961 CertificationLatest Questions & Answers | Prepare for H3C GB0-961 Certification
Latest Questions & Answers | Prepare for H3C GB0-961 Certification
NWEXAM
 
Huckel_Molecular orbital _Theory_8_Slides.pptx
Huckel_Molecular orbital _Theory_8_Slides.pptxHuckel_Molecular orbital _Theory_8_Slides.pptx
Huckel_Molecular orbital _Theory_8_Slides.pptx
study2022bsc
 
Science Lab Safety PPT.pptxwgyie ulbyaaaaaaaaaaaaaaaaaaaaaau
Science Lab Safety PPT.pptxwgyie ulbyaaaaaaaaaaaaaaaaaaaaaauScience Lab Safety PPT.pptxwgyie ulbyaaaaaaaaaaaaaaaaaaaaaau
Science Lab Safety PPT.pptxwgyie ulbyaaaaaaaaaaaaaaaaaaaaaau
atifkhan990367
 
Research Project csi1 - This presentation compares popular web browsers such ...
Research Project csi1 - This presentation compares popular web browsers such ...Research Project csi1 - This presentation compares popular web browsers such ...
Research Project csi1 - This presentation compares popular web browsers such ...
bomisung0207
 
2. Basic Legal terminologies in law for paralegal officers .docx
2. Basic Legal terminologies in law for paralegal officers .docx2. Basic Legal terminologies in law for paralegal officers .docx
2. Basic Legal terminologies in law for paralegal officers .docx
JosiahOngai1
 
巴利亚多利德大学毕业证书学校原版文凭补办UVa成绩单办本科成绩单
巴利亚多利德大学毕业证书学校原版文凭补办UVa成绩单办本科成绩单巴利亚多利德大学毕业证书学校原版文凭补办UVa成绩单办本科成绩单
巴利亚多利德大学毕业证书学校原版文凭补办UVa成绩单办本科成绩单
xule9cv6nd
 
When Is the Best Time to Use Job Finding Apps?
When Is the Best Time to Use Job Finding Apps?When Is the Best Time to Use Job Finding Apps?
When Is the Best Time to Use Job Finding Apps?
SnapJob
 
GENERAL INFORMATION for the most beautiful
GENERAL INFORMATION for the most beautifulGENERAL INFORMATION for the most beautiful
GENERAL INFORMATION for the most beautiful
12213013
 
UPSC+BAProgramme Syllabus for students who want to pursue UPSC coaching from ...
UPSC+BAProgramme Syllabus for students who want to pursue UPSC coaching from ...UPSC+BAProgramme Syllabus for students who want to pursue UPSC coaching from ...
UPSC+BAProgramme Syllabus for students who want to pursue UPSC coaching from ...
Tushar kumar
 
For ssrvm school Admission Campaign.pptx
For ssrvm school Admission Campaign.pptxFor ssrvm school Admission Campaign.pptx
For ssrvm school Admission Campaign.pptx
ArunTYltp
 
NATIONALISM IN EUROPE class 10 best ppt.pdf
NATIONALISM IN EUROPE class 10 best ppt.pdfNATIONALISM IN EUROPE class 10 best ppt.pdf
NATIONALISM IN EUROPE class 10 best ppt.pdf
leenamakkar79
 
material-17438335 to the third floor in 47-gsms.pptx
material-17438335 to the third floor in 47-gsms.pptxmaterial-17438335 to the third floor in 47-gsms.pptx
material-17438335 to the third floor in 47-gsms.pptx
JyotirmayNirankari
 
Software Development Business Plan1.pptx
Software Development Business Plan1.pptxSoftware Development Business Plan1.pptx
Software Development Business Plan1.pptx
vkprintingsolution
 
Traditional Medicine aDRTYSRTYSRTnd HIV.ppt
Traditional Medicine aDRTYSRTYSRTnd HIV.pptTraditional Medicine aDRTYSRTYSRTnd HIV.ppt
Traditional Medicine aDRTYSRTYSRTnd HIV.ppt
XolaniRadebe7
 
Handling Exceptions and waits in selenium.pptx
Handling Exceptions and waits in selenium.pptxHandling Exceptions and waits in selenium.pptx
Handling Exceptions and waits in selenium.pptx
Madhuri Lonikar
 
cis1-Project-Ch6b-Laptop Mac,Chrome,Windows-Portillo-Osmin.ppt.pptx
cis1-Project-Ch6b-Laptop Mac,Chrome,Windows-Portillo-Osmin.ppt.pptxcis1-Project-Ch6b-Laptop Mac,Chrome,Windows-Portillo-Osmin.ppt.pptx
cis1-Project-Ch6b-Laptop Mac,Chrome,Windows-Portillo-Osmin.ppt.pptx
slkfam510
 
History of Entomology and current updates of entomology.pptx
History of Entomology and current updates of entomology.pptxHistory of Entomology and current updates of entomology.pptx
History of Entomology and current updates of entomology.pptx
Neelesh Raipuria
 
Top Business Schools in Delhi For Quality Education
Top Business Schools in Delhi For Quality EducationTop Business Schools in Delhi For Quality Education
Top Business Schools in Delhi For Quality Education
top10privatecolleges
 
sorcesofdrugs-160228074 56 4246643544 (3).ppt
sorcesofdrugs-160228074 56 4246643544 (3).pptsorcesofdrugs-160228074 56 4246643544 (3).ppt
sorcesofdrugs-160228074 56 4246643544 (3).ppt
IndalSatnami
 
美国学位证(纽约州立大学德里分校毕业证明)SUNYD文凭证书复刻
美国学位证(纽约州立大学德里分校毕业证明)SUNYD文凭证书复刻美国学位证(纽约州立大学德里分校毕业证明)SUNYD文凭证书复刻
美国学位证(纽约州立大学德里分校毕业证明)SUNYD文凭证书复刻
Taqyea
 
Latest Questions & Answers | Prepare for H3C GB0-961 Certification
Latest Questions & Answers | Prepare for H3C GB0-961 CertificationLatest Questions & Answers | Prepare for H3C GB0-961 Certification
Latest Questions & Answers | Prepare for H3C GB0-961 Certification
NWEXAM
 
Huckel_Molecular orbital _Theory_8_Slides.pptx
Huckel_Molecular orbital _Theory_8_Slides.pptxHuckel_Molecular orbital _Theory_8_Slides.pptx
Huckel_Molecular orbital _Theory_8_Slides.pptx
study2022bsc
 
Science Lab Safety PPT.pptxwgyie ulbyaaaaaaaaaaaaaaaaaaaaaau
Science Lab Safety PPT.pptxwgyie ulbyaaaaaaaaaaaaaaaaaaaaaauScience Lab Safety PPT.pptxwgyie ulbyaaaaaaaaaaaaaaaaaaaaaau
Science Lab Safety PPT.pptxwgyie ulbyaaaaaaaaaaaaaaaaaaaaaau
atifkhan990367
 
Research Project csi1 - This presentation compares popular web browsers such ...
Research Project csi1 - This presentation compares popular web browsers such ...Research Project csi1 - This presentation compares popular web browsers such ...
Research Project csi1 - This presentation compares popular web browsers such ...
bomisung0207
 
2. Basic Legal terminologies in law for paralegal officers .docx
2. Basic Legal terminologies in law for paralegal officers .docx2. Basic Legal terminologies in law for paralegal officers .docx
2. Basic Legal terminologies in law for paralegal officers .docx
JosiahOngai1
 
巴利亚多利德大学毕业证书学校原版文凭补办UVa成绩单办本科成绩单
巴利亚多利德大学毕业证书学校原版文凭补办UVa成绩单办本科成绩单巴利亚多利德大学毕业证书学校原版文凭补办UVa成绩单办本科成绩单
巴利亚多利德大学毕业证书学校原版文凭补办UVa成绩单办本科成绩单
xule9cv6nd
 
When Is the Best Time to Use Job Finding Apps?
When Is the Best Time to Use Job Finding Apps?When Is the Best Time to Use Job Finding Apps?
When Is the Best Time to Use Job Finding Apps?
SnapJob
 
GENERAL INFORMATION for the most beautiful
GENERAL INFORMATION for the most beautifulGENERAL INFORMATION for the most beautiful
GENERAL INFORMATION for the most beautiful
12213013
 
UPSC+BAProgramme Syllabus for students who want to pursue UPSC coaching from ...
UPSC+BAProgramme Syllabus for students who want to pursue UPSC coaching from ...UPSC+BAProgramme Syllabus for students who want to pursue UPSC coaching from ...
UPSC+BAProgramme Syllabus for students who want to pursue UPSC coaching from ...
Tushar kumar
 

Getting up and running with Zend Framework

Editor's Notes

  • #10: Zend tool setup for linuxand windows
  • #11: Zend tool setup for linuxand windows
  • #12: Zend tool setup for linuxand windows
  • #13: Zend tool setup for linuxand windows
  • #14: Zend tool setup for linuxand windows
  • #15: Zend tool setup for linuxand windows
  • #16: Zend tool setup for linuxand windows