If…Else Statements in PHP

Conditional Statements is using to, execute some code if a condition is true and another code if the condition is false.

Syntax (Single Line):
if (condition) Program will executed if condition is true;

Syntax (with else condition):
if (condition)
Program will execute if condition is true;
else
Program will execute Read more

Switch statement in PHP

Conditional Statements is using to, execute some code if a condition is true and another code if the condition is false.

Syntax:
switch (variable)
{
  case value1:
    Program will execute if ‘variable’ value is equal to ‘value1’;
    break;
  case value2:
    Program will execute executed if ‘variable’ value is Read more

Akelos PHP Framework

The PHP Framework “Akelos” is a web application development platform based on the MVC (Model View Controller) design pattern.

Akelos based applications can run on most shared hosting service providers since Akelos only requires that PHP be available at the server. This means that the Akelos PHP Framework is the … Read more

CakePHP Framework

The CakePHP framework provides a robust base for your application. It can handle every aspect, from the user’s initial request all the way to the final rendering of a web page. And since the framework follows the principles of MVC, it allows you to easily customize and extend most aspects … Read more

CodeIgniter PHP Framework

CodeIgniter is an Application Development Framework – a toolkit – for people who build web sites using PHP. Its goal is to enable you to develop projects much faster than you could if you were writing code from scratch, by providing a rich set of libraries for commonly needed tasks, … Read more

Fusebox Framework

Fusebox is the most popular framework for building ColdFusion and PHP web applications. “Fuseboxers” find that the framework releases them from much of the drudgery of writing applications and enables them to focus their efforts on creating great, customer-focused software.

Fusebox is a framework for building web applications. It is … Read more