Re: [PHP] Re: Templates Are Driving me Nuts

2004-07-17 Thread Sean Malloy
The template system I use is extremely simple. Template.php: Items = array(); $this->_document = $document; } function Render() { echo $this->ToString(); } function ToString() { $template = $this->Ite

[PHP] Re: Templates Are Driving me Nuts

2004-07-17 Thread Skrol 29
Hello, Here is a shema to explain Template Engines: http://www.tinybutstrong.com/index.php?page=template Some developers complain about Template Engines because they are too complex or because they are a kind of new language over PHP. The one you will found on the URL above is expected to be di