SmootQ
SmootQ

Reputation: 2122

The steps to create an MVC web application

I've read many tutorials about MVC method ... I am now about to start an e-commerce application with PHP... So I'm confused about from where to start.(What's the best directory hierarchy ,the files, the templates etc)

Knowing that I will create admin pages(in a subdirectory with MVC), and website pages ... all I want is to know how to organize all this.

I've already created PHP websites (I am good in PHP and OOP). But not with MVC.

Thank you

Upvotes: 3

Views: 1642

Answers (3)

Nico Huysamen
Nico Huysamen

Reputation: 10417

As mentioned by @Daniel A. White, there already exists a lot of PHP MVC frameworks. Have a look at:

Upvotes: 3

hohner
hohner

Reputation: 11588

I'd start with a PHP framework like CodeIgniter because it's already packaged with a simple, effective and easy-to-use MVC structure that'll get you up to stratch with the logic necessary to start programming this type of web app. They also have a good user guide and support base - so help's never that far away if you run into trouble.

Upvotes: 2

Daniel A. White
Daniel A. White

Reputation: 190935

There are a number of different open source MVC frameworks for PHP such as CakePHP that should get you inspiration.

Upvotes: 2

Related Questions