set_include_path($_SERVER['DOCUMENT_ROOT'] . '/v2/inc/');
include_once("include.php");
$page = "testimonials";
?>
What our customers are saying about us...
// get testimonials array
$testimonials = getTestimonials();
$num_testimonials = count($testimonials);
?>
for($column = 1; $column <= 3; $column++) { ?>
for($i = $column; $i <= $num_testimonials; $i+=3) {
$test = $testimonials[$i];
echo "
" . $test['desc'] ."
• " . $test['name'] ." (" . $test['location'] . ")
";
}
?>
} ?>
include_once("footer.php"); ?>