0

Any one knows how to use this php file called dbconfig.php

<?php            
return array(
    // database info
    'db' => array(
        'database'  => 'mydb23',
        'username'  => 'user1',
        'password'  => 'pa123',
    )               
);

I need to know how to get variables (database and user name) on another php file, unfortunately this file used by a framework, so I can change it, I'm trying to use same file with external php file , not within framework.

like add it to my another index.php

include('dbconfig.php');



    <?php
    echo  array_values('db','database'); didn't work
    ?>
Linweb
  • 29
  • 6

0 Answers0