hy everyone, can I get list of databases name in mysql server on codeigniter3 I have tried this codeigniter3 query code but still not worked:
$databases = $this->db->query('show databases');
I also tried with php code not worked
$db_conn = mysqli_connect('localhost', 'root', '');
$databases = mysqli_query($db_conn,"SHOW DATABASES");