hi i have problem with namespace
in codeIgniter
.
what i'm trying to do is:
i have downloaded
phpmailer
withcomposer
it has 2
namespaces
they are
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
whenerver i include this namespace
it will give this error
Class 'Frontend_Controller' not found
here is my controller code :
No Error Code - this code works fine
class Welcome extends Frontend_Controller {
//my code goes here
}
This code gives Error
require "vendor/autoload.php";
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
class Welcome extends Frontend_Controller {
// my code goes here....
}
i have tried this link but giving same error : https://gist.github.com/JeyKeu/7533af3b9b5fd078910d if i put the code in application\config\config.php
please help me thanks in advance