Learn CodeIgniter in 8 Days – Video Tutorials

2,599 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...]

Free PHP, HTML, CSS, JavaScript editor (IDE) – Codelobster PHP Edition

3,631 views

Free PHP, HTML, CSS, JavaScript editor (IDE) - Codelobster PHP Edition

For valuable work on creation of sites you need a good comfortable editor necessarily. There are many requiring paid products for this purpose, but we would like to select free of charge very functional and at the same time of simple in the use editor – Codelobster PHP Edition .

[Read more...]

PhpStorm – PHP IDE with Intelligent editor

455 views

PhpStorm - PHP IDE with Intelligent editor
PhpStorm provides rich and intelligent code editor for PHP with syntax highlighting, extended code formatting configuration, on-the-fly error checking, and smart code completion.

PHP code completion (local scope)

PHP Code Completion

Code completion (Ctrl + Space) finalizes classes, methods, variable names, and PHP keywords, plus commonly used names for fields and variables depending on their type.

Code completion only includes local scope on first invocation. Press Ctrl+Space again to see all global variants.
[Read more...]

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

1,064 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