Listing 4.7. | |
| ROZDZIAŁ: | 4. Zmienne i widoki |
| TXT: | listing-04-07.txt |
<?php
class Actions extends ActionsBase
{
public function execute_tekst()
{
$tmp = file_get_contents('../scripts/dane/ojciec_i_syn.txt');
$tmp = nl2br($tmp);
$this->set('tytul', 'Ojciec i syn');
$this->set('tresc', $tmp);
}
}