i am trying to include a config file for another script but it keeps trying to use the previous config file for the script. how can i require both of them on the same page.
PHP Code:
require ("config.php");
require ("config2.php");
does not work. it produces this "table 'foo.foofoo' doesn't exist"
i had to close the connection to the first table, open a new connection to the second table and close it, then had to reopen the first connection to continue the rest of the script.