index.php:
<?php class template { var $sSource; var $sParsed; function load($sTemplate) { } function init($sKey, $sValue) { $this->aValues[$sKey] = $sValue; } function run() { } } $tpl = new template; $tpl -> load("template.html"); $tpl -> init("{TITLE}", "Tytuł strony"); $tpl -> init("{CONTENT}", "Treść strony"); $tpl -> run(); ?>
template.html:
Dlaczego to niechce działać?
Co napisałem źle?