Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Development Tools Using PHP with MySQL Querying the Database with PHP Avoiding Duplication

Do we have to include config.php file into database.php?

I do not see Randy includng the config.php file so i was not including it but i would get an error like DB_HOST could not be found. One I included config file into database.php it works.

require 'config.php';

1 Answer

Daniel Jenkins
Daniel Jenkins
17,714 Points

You can include config.php in the database.php file but including it in products.php before you include database.php file will also work.