Skip to content
Htain Lin Shwe edited this page Mar 8, 2012 · 1 revision

Ava allow to create custom global function. It's call helper.

Create samplefun.php at /system/user/helper

###samplefun.php

<?php
function helloworld()
{
	return "my world";
}
?>

###Loading

$this->load->helper("samplefun");
$fun = helloworld();

Clone this wiki locally