October 3, 2013

An Ideal Project Management System

Project Management System Background In fact we were looking for a PMS with an ongoing project perspective. Where there is no deadline or enddate of any project but a start date. Now every month we will perform a no. of tasks and clients could review the progress and reach to us through tickets. There should […]

October 1, 2013

Array to Object – Start with PHP OOP

PHP: Hypertext Preprocessor

<?php $obj = (object) array(‘web’ => ‘wdwd’, ‘game’ => ‘HOAB HTML5’); echo $obj->web; // prints ‘wdwd’ echo $obj->game; // prints ‘HOAB HTML5’ ?>