Icestormz. Thanks for responding. Here is a copy of the MOVED Code:
<?php
print("<div id=\"products\">");
print("<h2 class='heading_dark'>Samples of Happy Labels Personalized Stationery</h2>");
include("./classes/products/class.product_manager.php");
$prod_manager = new ProductManager();
$products = array(
"'SLA1100'",
"'SLA1102'",
"'SNC0100'",
"'SNC0114'",
"'SLA1101'",
"'SGT1101'",
"'SNC0112'",
"'SNC0115'"
);
$prod_manager->getProductsById($products);
$prod_manager->listProducts();
print("</div>");
?>
It is identical to original COPIED code except the include statement.
The include statement in the original copied code looks like this:
include("../classes/products/class.product_manager.php");
I made this change because the new location is being executed from the root directory instead of within the HOME directory (beneath root) where the original code is executed.
DbManager gets involved as a REQUIRE ONCE from product_manager.php.