Skip to content

Instantly share code, notes, and snippets.

@phawk
Created January 15, 2012 12:01
Show Gist options
  • Select an option

  • Save phawk/1615618 to your computer and use it in GitHub Desktop.

Select an option

Save phawk/1615618 to your computer and use it in GitHub Desktop.
<?php
if ($this->session->userdata('user_id'))
{
echo 'Hello user '.$this->session->userdata('user_id');
echo ' '.anchor('users/logout','Logout').'<br />';
echo anchor('/privatepage','Private page');
}
else
{
echo anchor('users/login','Login').' '.anchor('users/register','Register');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment