6 lines
83 B
PHP
6 lines
83 B
PHP
|
<?php
|
||
|
$smarty -> caching = false;
|
||
|
$smarty -> cache_lifetime = 3600;
|
||
|
echo '123';
|
||
|
|
||
|
?>
|