$Category = "Home";
include("php-bin/common-inc.php");
include("php-bin/functions-inc.php");
include("php-bin/jscript-inc.php");
//include("php-bin/head-inc.php");
echo "\n";
echo "
\n";
include ("includes/header-inc.php");
?>
$DB = "Austgen"; ?>
if ($cat == "then")
$heading = "Then and Now";
if ($cat == "fleet")
$heading = "Fleet Service";
if ($cat == "process")
$heading = "Process Control";
if ($cat == "industrial")
$heading = "Industrial";
if ($cat == "commres")
$heading = "Commerical and Residential";
if ($cat == "equipment")
$heading = "Equipment";
?>
echo "$heading"; ?>
$result = mysql_db_query($DB, "SELECT * FROM pictures WHERE (category = '$cat') ORDER BY id ASC ");
if ($result)
{
$c = 0;
echo "";
echo "";
while ($row = mysql_fetch_array($result))
{
$c++;
echo " | ";
if ($c % 5 == 0 AND $c != 0)
{
echo "
";
}
}
echo "
";
echo "
back to main archives
";
}
?>
include("includes/footer-inc.php"); ?>