";
echo "";
echo " |
";
echo <<< EOF
EOF;
echo " | ";
echo "Industry Links
| ";
echo <<< EOF
Below you will find links that we have found helpful to our past clients.
If you have or own a website that you feel would benefit our visitors, please Add your link here.
EOF;
$CategoryCount = 0; // count displaing categories on this page
for ($Counter=0; $Counter < count($LinkCategoryA); $Counter++) {
if ($LinkCategoryA[$Counter]['MasterID'] == 0) {
$CategoryCount++;
}
}
$Halfway = $CategoryCount - intval($CategoryCount/2) - 1;
$Displayed = 0;
for ($Counter=0; $Counter < count($LinkCategoryA); $Counter++) {
if ($LinkCategoryA[$Counter]['MasterID'] == 0) {
$TheLink = ($LMS_Root_PageNames ? $LMS_Root . '_' : '') . $LinkCategoryA[$Counter]['FileName'] . $LMS_Extensions;
echo '- ' . $LinkCategoryA[$Counter]['Title'] . " (" . $LinkCategoryA[$Counter]['LinkCount'] . ")
";
if ($Halfway == $Displayed) {
echo ' | ';
}
$Displayed++;
}
}
echo <<< EOF
|
|
More info on : $WebsiteKeyword
|
EOF;
include "footer.php";
?>