Хак отображает кол-во времени за которое был открыт сайт! 1. Открыть index.php & найти: Code echo $tpl->result['main']; Заменить: Code eval (' ?' . '>' . $tpl->result['main'] . '<' . '?php '); 2. Открытое Main.tpl и добавить этот код в вашу функцию места шаблона: Code <?php
// Place at the very bottom of your page
$time = microtime(); $time = explode(" ", $time); $time = $time[1] + $time[0]; $finish = $time; $totaltime = ($finish - $start); printf ("Site Open In %f Seconds.", $totaltime); // The above line can be changed but remember to keep %f
?>
|