Thursday, March 17, 2016

Simple php application run with command line

Developers , who uses ubuntu actually know the taste of terminal line or command line. Laravel developers also know that , laravel introduced "artisan" which runs with terminal line. It is really so amazing.

Thats why today I am writing this article. Today I am trying to show you how to use command line for php and also can build an application that can run with command line.

Sunday, March 13, 2016

Simple CRUD project with OOPHP and PDO

CRUD is an essential part for application .  At the same time for php application , combination of OOPHP and PDO will make your applications more smooth , nice , well decorated and perfect. So, I think CRUD with OOPHP and PDO is really a good practice.
In this article, I am trying to show how to create a simple project of CRUD using OOPHP and PDO.

Friday, March 11, 2016

Simple use of Composer in OOPHP - a simple Calculator with OOPHP

Composer and OOPHP, a great combination for php application. This combination not only reduce your work pressure but also give you a nice clean and helpful application development system.


In this article , I will try to show how we can create a very simple project with OOPHP and composer. Our project is Simple Calculator.


Tuesday, March 8, 2016

Complete CRUD with PDO with PREPARED statement

PDO (PHP Data Objects) is a PHP extension to formalise PHP's database connections by creating a uniform interface. This allows developers to create code which is portable across many databases and platforms. PDO is _not_ just another abstraction layer like PearDB although PearDB may use PDO as a backend. Those of you familiar with Perls DBI may find the syntax disturbingly familiar.

 Well, leave this theoretical part, you can read it from internet.  I actually not trying to teach PDO, there is so much tutorial available for this. I just trying to make a collection of CRUD codes here using PDO.