<?php
require_once("../includes/config.inc.php");
require_once("../includes/CategoryDataAccess.inc.php");


$cda = new CategoryDataAccess(getDBLink());

echo("ACTIVE CATEGORIES");
$activeCategories = $cda->getCategoryList();
var_dump($activeCategories);

echo("ALL CATEGORIES");
$allCategories = $cda->getCategoryList(false);
var_dump($allCategories);


?>