I am a beginner in php and I have a problem, I have a config.php file like this:
<?php
$config['dbHostname'] = 'localhost';
$config['dbUser'] = 'teste';
$config['dbPassword'] = 'passteste';
But I have a class with connection and database manipulation functions that would use these variables from config.php
but I could not access them at all, please could anyone help me?