Welcome Guest, Not a member yet? Register   Sign In
My_Helper
#1

[eluser]laegnur[/eluser]
Hi

I made a file called MY_String_helper to extend the CI String_helper with the next function:
Code:
function strip_class($str)
{
  $str = strtolower($str);
  $str = str_replace(array("ñ", "ñ","ñ"),"nh",$str);
  return $str
}

Then I load the My_Helper from the control ($this->load->helper('string')Wink but when I used the function in a view with data from a model, it said that the function don't exists

Code:
Fatal error: Call to undefined function strip_class()


Messages In This Thread
My_Helper - by El Forum - 03-06-2010, 08:05 AM
My_Helper - by El Forum - 03-06-2010, 11:40 AM
My_Helper - by El Forum - 03-06-2010, 05:17 PM



Theme © iAndrew 2016 - Forum software by © MyBB