Skip to content

Instantly share code, notes, and snippets.

@phawk
Created January 15, 2012 12:03
Show Gist options
  • Save phawk/1615623 to your computer and use it in GitHub Desktop.
Save phawk/1615623 to your computer and use it in GitHub Desktop.
<?php
class Privatepage extends MY_Controller {
function __construct()
{
parent::__construct();
}
function index()
{
echo 'Welcome to the private area user: '.$this->session->userdata('user_id');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment