PHP Frameworks

Getting Started with The Yii PHP Framework - Part 2 — step-by-step Linux tutorial on Progressive Robot

Getting Started with The Yii PHP Framework – Part 2

In this tutorial, we continue what we started last time when we installed the Yii framework on the VPS and created our first application. We will go ahead and use some of the code generation tools provided by Yii to set up a first model for our data, generate the code for the CRUD operations, and take a look at how a typical Yii application workflow works.

Read more
How To Horizontally Scale a Laravel 4 App with a PostgreSQL Database — step-by-step Linux tutorial on Progressive Robot

How To Horizontally Scale a Laravel 4 App with a PostgreSQL Database

There are two methods to scaling an application, service, server, etc. The first, vertical scaling, calls for more resources to a machine. The second, horizontal scaling, calls for a separation of functionality to create a more piecemeal assembly of parts. This tutorial will show you how to horizontally scale a Laravel 4 App with a PostgreSQL database.

Read more
How To Use Lithium to Create a Web App — step-by-step Databases tutorial on Progressive Robot

How To Use Lithium to Create a Web App

In this tutorial, we’ll continue where we left off previously when we installed Lithium onto our Ubuntu 12.04 VPS and configured all the necessary requirements for building our web application. If you remember, we also connected a MySQL database and had a glimpse of how to print out “Hello World” onto the page. What will follow now is illustrating how to use the three MVC components (Models, Views and Controllers) together with the Lithium framework.

Read more
How To Delete Database Records in Laravel Eloquent — step-by-step Programming tutorial on Progressive Robot

How To Delete Database Records in Laravel Eloquent

In Eloquent, you can delete database records conveniently with the delete method from the parent Model class. In the last part of this series, you’ll create a new command to delete lists. For simplicity, any links associated with the list to be deleted will be reassigned to the default link list.

Read more
CHAT