Blog

Archive for the MVC Category


Creating a Counter using CodeIgniter
Posted on June 26, 2015 in CodeIgniter, MVC, PHP by Matt Jennings

<?php
// If counter session variable is set,

Read more


How to Pass Data from an Array in a Controller to a View in CodeIgniter
Posted on June 25, 2015 in CodeIgniter, MVC, PHP by Matt Jennings

<?php
class Test extends CI_Controller
{
public function hello()
{

Read more


How to Call Views in CodeIgniter
Posted on June 25, 2015 in CodeIgniter, MVC, PHP by Matt Jennings

<?php
class Test extends CI_Controller
{
public function hello()
{

Read more