2 - PHP MVC Frameworks MVC Introduction Lab
2 - PHP MVC Frameworks MVC Introduction Lab
Framework
Introduction
This tutorial is for beginners or students. I created a functionality to add, edit and delete a record
in PHP with MVC logic without Framework. Also, it explained how to create an MVC pattern in
PHP. I hope it will be helpful for you to add a data table in your program.
As we learn more about these principles, we will grow in our understanding of why the excellent
MVC frameworks do things the way they do. We are not learning how to create an application in
Zend Framework, or in CakePHP. We are learning how MVC works, and by extension, how
these frameworks have built upon (or deviated from) the way in which we would expect an MVC
framework to be built.
In PhpMyAdmin, create a database named php_mvc_demo then create a table named sports
Section 1
Config.php is used to connect the mysql database to create a connection parameter for mysql
host,user,password and database name.
<?php
class config
A small part of the code in index.php is used to setup a controller object and call mvcHandler() to
view the default page list.php.
<?php
session_unset();
require_once 'controller/sportsController.php';
$controller = new sportsController();
$controller->mvcHandler();
?>
In the model folder, create one class for table structure, its named sports and has field and
message field to hold messages and data.
<?php
class sports
{
// table fields
public $id;
public $category;
public $name;
// message string
public $id_msg;
public $category_msg;
public $name_msg;
// constructor set default value
function __construct()
{
$id=0;
$category=$name="";
$id_msg=$category_msg=$name_msg="";
}
}
?>
Section 2
The second section is a sportsModel class structure. We are going to explain and show
insertRecord(), updateRecord(),selectRecord() and insertRecord(). The sportsModel class is used
<?php
class sportsModel
{
// set database config for mysql
function __construct($consetup)
{
$this->host = $consetup->host;
$this->user = $consetup->user;
$this->pass = $consetup->pass;
$this->db = $consetup->db;
}
// open mysql data base
public function open_db()
{
$this->condb=new mysqli($this->host,$this->user,$this->pass,$this->db);
if ($this->condb->connect_error)
{
die("Error in connection: " . $this->condb->connect_error);
}
}
// close database
public function close_db()
{
$this->condb->close();
}
// insert record
public function insertRecord($obj)
{
try
{
$this->open_db();
$query=$this->condb->prepare("INSERT INTO sports (category,name)
VALUES (?, ?)");
$query->bind_param("ss",$obj->category,$obj->name);
$query->execute();
$res= $query->get_result();
$last_id=$this->condb->insert_id;
$query->close();
$this->close_db();
return $last_id;
}
catch (Exception $e)
{
$this->close_db();
throw $e;
}
}
//update record
public function updateRecord($obj)
$query->execute();
$res=$query->get_result();
$query->close();
$this->close_db();
}
}
?>
Section 3
Section 3 is the controller code part. The sportsController has mvcHandler() and the CRUD
functions insert(), update(),delete() and list(). mvcHandler() receives request and execute. This
request shows views according to call request by user.
<?php
require 'model/sportsModel.php';
require 'model/sports.php';
require_once 'config.php';
class sportsController
{
function __construct()
{
$this->objconfig = new config();
$this->objsm = new sportsModel($this->objconfig);
}
// mvc handler request
public function mvcHandler()
{
$act = isset($_GET['act']) ? $_GET['act'] : NULL;
switch ($act)
{
case 'add' :
$this->insert();
break;
case 'update':
$this->update();
break;
case 'delete' :
$this -> delete();
break;
default:
$this->list();
Section Four
Section four is the view part, when mvcHandler() receives a request and executes the request, it
shows views for user. We have created three views in the view folder, which is insert, update and
list, which all have HTML design. These views work with controller, and the controller works
with model to get or set records in a database table.
insert.php
<?php
require '../model/sports.php';
session_start();
$sporttb=isset($_SESSION['sporttbl0'])?
unserialize($_SESSION['sporttbl0']):new sports();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Create Record</title>
<link rel="stylesheet" href="../libs/bootstrap.css">
<style type="text/css">
.wrapper{
<?php session_unset();?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Dashboard</title>
<link href="~/../libs/fontawesome/css/font-awesome.css" rel="stylesheet"
/>
<link rel="stylesheet" href="~/../libs/bootstrap.css">
<script src="~/../libs/jquery.min.js"></script>
<script src="~/../libs/bootstrap.js"></script>
<style type="text/css">
.wrapper{
width: 650px;
margin: 0 auto;
}
.page-header h2{
margin-top: 0;
}
table tr td:last-child a{
margin-right: 15px;
}
</style>
<script type="text/javascript">
$(document).ready(function(){
$('[data-toggle="tooltip"]').tooltip();
});
</script>
</head>
<body>