Bars
Новичок
PHP:
<?php
if(!defined('DATALIFEENGINE')) {
die("Hacking attempt!");
}
$tpl->load_template( 'achigen.tpl' );
$counter = file_get_contents("count.txt");
$tpl->set( '{count}', $counter );
$tpl->set( '{your}', $counter+1 );
$tpl->compile( 'content' );
$tpl->clear();
?>