I have a library called lib, which contains a class called nusoap.php. I have put lib inside the folder application/libraries/.
When I try to load it, I'm getting the following error:
An Error Was Encountered
Unable to load the requested class: nusoap
This the code I use to load it
class Dealership extends Controller
{
function Dealership()
{
parent::Controller();
$this->load->library('nusoap.php');
}
}
Am I missing anything?
Thanks for helping