View file templates/foot.php

File size: 1.02Kb
<?php
if ($glav!=1)
  {
   echo"<br><a href=\"$home/index.php\">Главная</a>";
  }
  
echo'<div class=c>';
?>
<?php
if($counter=="1")
  {
    include("modules/counter/counter.php");
  }
?>
<?php
echo'<br><a href='.$home.'>'.$copyright.'</a>
     </div>';
echo'<div align="center">';
echo"<a href=http://oneshop.jino-net.ru>Движок WAP-ENGINE</a><br>";
//Показываем генерацию
if($generacia=="1")
  {
    include"templates/generacia.php";
    include"../templates/generacia.php";
    include"../../templates/generacia.php";
    echo'<br>';
  }
  
if ($gzip=="1")
  {
    echo'<font color=green><b>gzip - on</b></font>';
    $Contents = ob_get_contents();
    $gzib_file = strlen($Contents); 
    $gzib_file_out = strlen(gzcompress($Contents,9));
    $gzib_pro=round(100-(100/($gzib_file/$gzib_file_out)),1);
    echo '<br>Cжатие: '.$gzib_pro.'%';
  }
if ($gzip=="0")
  {
    echo'<font color=red><b>gzip - off</b></font>';
  }
echo'</div>';
echo'</body></html>';
?>