Featured
-
Top 5 Features That Make Laravel the Best PHP Framework for Development
Laravel is a free open source Web Framework of PHP
by abhishek.tiwari.458 -
Best 5 Lightweight PHP Frameworks for REST APIs Development
Are you ready to develop the Rest AP
by ankur.kumar -
PHP: Full-Stack Framework vs Micro Framework
A web framework can be described as a software fra
by ankit.bhatia -
How to get facebook profile picture by Facebook App
If you would like to get your profile picture in f
by vivek.rastogi -
Creating RESTful API in cakephp
This tutorial will help you to learn how to create
by pushpendra.rawat
Tags
Active Inactive button in cakephp using ajax
Suppose we have a table name player and in player table we have field like id , image,player_name, status, etc. Suppose data inside fields are id=1, name=ram, image=abcd.jpg and status=0, Now we want to change status to 1, and again we have...
How to configure opencart 2.2.0.0 in your localhost with Virtual host
Opencart is one of the most popular E-commerce Framework in PHP. Opencart is easy to develop high level E-commerce websites. It's follow nicely defined MVC structure. This tutorial is belong to who are looking for best E-commerce solution.
...
MVC architecture in CakePHP
CakePHP is a swift development framework for PHP which manipulate frequently recognized design patterns like Associative Data Mapping, Front Controller, and MVC. Our key target is to impart a structured framework that accredit PHP users at a...
MVC Structure Flow
The MVC structure breaks an application's interface, into three parts: the model, the view, and the controller. It can be mapped with the traditional input, processing & output roles .
Input --> Processing --> Output
Controlle...
How to store constants in laravel 5.0
In laravel 5.0 the way to define constants and use them through out the project. Following are the steps to accomplish it:-
Step 1st :- Creating a separate file under /config folder named as constants.php ( it can be any name) for storing all ...