Learn CodeIgniter in 8 Days – Video Tutorials

2,610 views

CodeIgniter – Open Source PHP framework, used by hundreds of thousands of PHP developers worldwide.

Top 10 PHP Framework: http://www.phpframeworks.com/top-10-php-frameworks/

Here is NetTuts video tutorials about CodeIgniter Framework (all the sample code built on CodeIgniter 1.7)
[Read more...]

Discussing PHP Frameworks: What, When, Why and Which?

1,067 views

What is a PHP Framework?

PHP is the world’s most popular scripting language for many different reasons – flexibility, ease-of-use, among others – but often times coding in PHP, or any language for that matter, can get rather monotonous and repetitive. That’s where a PHP framework can help.

PHP frameworks streamline the the development of web applications written in PHP by providing a basic structure for which to build the web applications. In other words, PHP frameworks help to promote rapid application development (RAD), which saves you time, helps build more stable applications, and reduces the amount of repetitive coding for developers. Frameworks can also help beginners to build more stable apps by ensuring proper database interaction and coding on the presentation layer. This allows you to spend more time creating the actual web application, instead of spending time writing repetitive code.

The general idea behind the workings of a PHP framework is referred to as Model View Controller (MVC). MVC is an architectural pattern in programming that isolates business logic from the UI, allowing one to be modified separately from the other (also known as separation of concerns). With MVC, Model refers to data, View refers to the presentation layer, and Controller to the application or business logic. Basically, MVC breaks up the development process of an application, so you can work on individual elements while others are unaffected. Essentially, this makes coding in PHP faster and less complicated.
[Read more...]

Related Posts with Thumbnails