<?php
define('TEMPLATES_PATH', '/path/to/templates/');
function mega_template_system($template_filename, array $view_args) {
extract($view_args);
include TEMPLATES_PATH . $template_filename;
}
mega_template_system('index_page.php', array('login' => 'Vasya'));[/quote
<?php
define('TEMPLATES_PATH', '/path/to/templates/');
function mega_template_system($template_filename, array $view_args) {
extract($view_args);
include TEMPLATES_PATH . $template_filename;
}
mega_template_system('index_page.php', array('login' => 'Vasya'));
спасибо