Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 323 Bytes

README.md

File metadata and controls

15 lines (13 loc) · 323 Bytes

Simple Utility Library

Simple utility to use in the Codeigniter projects. I use it in my lab project. You can use it at your own risk.

Installation

Save in application/libraries folder

How to use

e.g:

public function reset_csrf() 
{
    $this->load->library('utility');
    $this->utility->new_csrf();
}