In order to use libraries in CodeIgniter, you need to create a library.
class Pro {
function show_hello_world()
{
return 'Hello World';
}
}
In this library, which is called is pro.php, this file must be added to the following path.
Path: \xampp\htdocs\project\application\librarie...