SlideShare a Scribd company logo
Web Application Development
using MVC Framework Kohana
Arafat Rahman
Web Application Developer
Solution Arena
http://arafatbd.net
Framework ?
Provides

Generic
functionality

Some key features

Reusable

Well-defined

Specialized by user
Why Kohana (KO3)

Its MVC

Its HMVC

Very fast framework

Strict PHP 5.2 - OOP and extremely DRY

Many common components

Simple routing structure
MVC ?
Model-View-Controller
MVC
HMVC ?
Hierarchical Model View Controller
MVC and HMVC
Setting up Kohana (KO3)
Setting up Kohana
Configuration
application/bootstrap.php
Kohana::init(array(
'base_url' => '/kohana/',
));
Configuration (cont.)
Delete

/install.php
Requesting a Controller
/index.php/<controller>/<action>
example:
/index.php/topic/view/123
Hello, world!
Hello, world! (cont.)
http://localhost/kohana/index.php/welcome
Hide index.php
How to hide index.php
http://kerkness.ca/wiki/doku.php?
id=removing_the_index.php
Hello, world! (cont.)
http://localhost/kohana/welcome
Database Config
application/bootstrap.php
Database Config (cont.)
application/config/database.php
Database Config (cont.)
application/config/database.php
Create Table: topics
CREATE TABLE `kohana`.`topics` (
`topic_id` INT( 11 ) NOT NULL
AUTO_INCREMENT PRIMARY KEY ,
`title` VARCHAR( 250 ) NOT
NULL ,
`description` TEXT NOT NULL ,
`date` DATETIME NOT NULL
) ;
Reading Database Records
application/classes/controller/topic.php
Reading Database Records
application/classes/controller/topic.php
try {
$data['topics'] = DB::select()
->from('topics')
->order_by('date', "DESC")
->execute()
->as_array();
$this->request->response =
View::factory('list', $data);
}
Reading Database Records
application/view/list.php
Reading Database Records
application/view/list.php
Reading Database Records
application/view/list.php
Inserting New Records
application/classes/controller/topic.php
http://localhost/kohana/topic/new_topic
Inserting New Records (cont.)
http://localhost/kohana/topic/new_topic
Inserting New Records (cont.)
application/classes/controller/topic.php
Inserting New Records (cont.)
application/classes/controller/topic.php
Inserting New Records (cont.)
application/classes/controller/topic.php
Update Records
http://localhost/kohana/topic/index
Update Records (cont.)
application/classes/controller/topic.php
Update Records (cont.)
application/classes/controller/topic.php
Update Records (cont.)
http://localhost/kohana/topic/edit/1
Update Records (cont.)
application/classes/controller/topic.php
Update Records (cont.)
application/classes/controller/topic.php
Model and ORM
Object Relational Mapping (ORM)
application/classes/model/topic.php
class Model_Topic extends ORM {
...
}
HMVC
In a View
<?php echo $content;?><br/>
<?php echo
Request::factory('topic/featured')
->execute()->response;
?>
HMVC (cont.)
In a Controller
$data['featured'] =
Request::factory('topic/featured')
->execute()->response;
References

Kohana Documentation
http://kohanaframework.org/documentation

Unofficial documentaion
http://kerkness.ca/wiki/doku.php
Questions ?
Again, I am
Arafat Rahman
http://arafatbd.net

More Related Content

What's hot (20)

PPTX
Mule esb soap_service
Gennaro Spagnoli
 
PPT
PHP and MySQL
bmani
 
PPT
Tomcat Clustering
gouthamrv
 
PPTX
Stored procedure in Mule
Khasim Saheb
 
PPTX
Deploy apps in standalone with maven
Anirban Sen Chowdhary
 
PPT
Tomcat Configuration (1)
nazeer pasha
 
PDF
Apache Tomcat 8 Application Server
mohamedmoharam
 
PPTX
Mule esb :Data Weave
AnilKumar Etagowni
 
PPTX
Basic example using until successful component
prudhvivreddy
 
PPTX
Soap request in mule
Praneethchampion
 
PPT
]po[ Sencha File-Storage Specs
Klaus Hofeditz
 
PPTX
Basic example using vm component
prudhvivreddy
 
PDF
Introduction to Flow3
Web Essentials Co., Ltd.
 
PPT
Mobile for web
Võ Duy Tuấn
 
PPTX
Using groovy in mule
Son Nguyen
 
PDF
JBoss Fuse - Fuse workshop EAP container
Christina Lin
 
PPTX
Learn SQL Quickly
tutorialbooks
 
PDF
ICEfaces EE - Enterprise-ready JSF Ajax Framework
ICEsoftTech
 
PPT
Auxiliary : Tomcat
webhostingguy
 
PDF
Async Scope With Mule ESB
Jitendra Bafna
 
Mule esb soap_service
Gennaro Spagnoli
 
PHP and MySQL
bmani
 
Tomcat Clustering
gouthamrv
 
Stored procedure in Mule
Khasim Saheb
 
Deploy apps in standalone with maven
Anirban Sen Chowdhary
 
Tomcat Configuration (1)
nazeer pasha
 
Apache Tomcat 8 Application Server
mohamedmoharam
 
Mule esb :Data Weave
AnilKumar Etagowni
 
Basic example using until successful component
prudhvivreddy
 
Soap request in mule
Praneethchampion
 
]po[ Sencha File-Storage Specs
Klaus Hofeditz
 
Basic example using vm component
prudhvivreddy
 
Introduction to Flow3
Web Essentials Co., Ltd.
 
Mobile for web
Võ Duy Tuấn
 
Using groovy in mule
Son Nguyen
 
JBoss Fuse - Fuse workshop EAP container
Christina Lin
 
Learn SQL Quickly
tutorialbooks
 
ICEfaces EE - Enterprise-ready JSF Ajax Framework
ICEsoftTech
 
Auxiliary : Tomcat
webhostingguy
 
Async Scope With Mule ESB
Jitendra Bafna
 

Similar to Web Application Development using MVC Framework Kohana (20)

PPS
003 web-apps-using-kohana-arafat-rahman-101107191139-phpapp02
Julio Pari
 
PDF
Introduction To CodeIgniter
Muhammad Hafiz Hasan
 
PDF
Rapid Development With CakePHP
Edureka!
 
PDF
Intro to Laravel 4
Singapore PHP User Group
 
PDF
Building Restful Web App Rapidly in CakePHP
Edureka!
 
PPT
Developing Java Web Applications
hchen1
 
PDF
Web services with laravel
Confiz
 
ODP
Get going with CakePHP Framework at gnuNify 2010
Abbas Ali
 
ODP
A Good PHP Framework For Beginners Like Me!
Muhammad Ghazali
 
PPTX
Laravel development (Laravel History, Environment Setup & Laravel Installatio...
Dilouar Hossain
 
PPT
Web service with Laravel
Abuzer Firdousi
 
ODP
Sprint Portlet MVC Seminar
John Lewis
 
PPT
Oip presentation
Harsha Halgaswatta
 
PPTX
CodeIgniter Basics - Tutorial for Beginners
Isuru Thilakarathne
 
ODP
MVC = Make Venerated Code?
Patrick Allaert
 
PPTX
Devopstore
Farkhad Badalov
 
PDF
How we rest
ColdFusionConference
 
PPT
Introduction to ASP.NET MVC 1.0
Shiju Varghese
 
PPTX
Creating your own framework on top of Symfony2 Components
Deepak Chandani
 
PPTX
Windows Server AppFabric Caching - What it is & when you should use it?
Robert MacLean
 
003 web-apps-using-kohana-arafat-rahman-101107191139-phpapp02
Julio Pari
 
Introduction To CodeIgniter
Muhammad Hafiz Hasan
 
Rapid Development With CakePHP
Edureka!
 
Intro to Laravel 4
Singapore PHP User Group
 
Building Restful Web App Rapidly in CakePHP
Edureka!
 
Developing Java Web Applications
hchen1
 
Web services with laravel
Confiz
 
Get going with CakePHP Framework at gnuNify 2010
Abbas Ali
 
A Good PHP Framework For Beginners Like Me!
Muhammad Ghazali
 
Laravel development (Laravel History, Environment Setup & Laravel Installatio...
Dilouar Hossain
 
Web service with Laravel
Abuzer Firdousi
 
Sprint Portlet MVC Seminar
John Lewis
 
Oip presentation
Harsha Halgaswatta
 
CodeIgniter Basics - Tutorial for Beginners
Isuru Thilakarathne
 
MVC = Make Venerated Code?
Patrick Allaert
 
Devopstore
Farkhad Badalov
 
Introduction to ASP.NET MVC 1.0
Shiju Varghese
 
Creating your own framework on top of Symfony2 Components
Deepak Chandani
 
Windows Server AppFabric Caching - What it is & when you should use it?
Robert MacLean
 
Ad

Recently uploaded (20)

PDF
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
PDF
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
PDF
How do you fast track Agentic automation use cases discovery?
DianaGray10
 
PDF
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
PDF
Transcript: New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
PDF
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
PPTX
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
PDF
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
PDF
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
PPTX
Mastering ODC + Okta Configuration - Chennai OSUG
HathiMaryA
 
DOCX
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
PDF
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
PPTX
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
PDF
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
PDF
“Voice Interfaces on a Budget: Building Real-time Speech Recognition on Low-c...
Edge AI and Vision Alliance
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PDF
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
PPTX
Seamless Tech Experiences Showcasing Cross-Platform App Design.pptx
presentifyai
 
PDF
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
PDF
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
How do you fast track Agentic automation use cases discovery?
DianaGray10
 
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
Transcript: New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
Mastering ODC + Okta Configuration - Chennai OSUG
HathiMaryA
 
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
“Voice Interfaces on a Budget: Building Real-time Speech Recognition on Low-c...
Edge AI and Vision Alliance
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
Seamless Tech Experiences Showcasing Cross-Platform App Design.pptx
presentifyai
 
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
Ad

Web Application Development using MVC Framework Kohana