0
votes
CodeIgniter doesn’t like functions in views?
I'm not familiar with CodeIgnitor, but it could be including your templates multiple times. Try wrapping your function in a check:
if (!function_exists('myfunc'))
{
function myf …
