Re: [PHP] Another Template Engine (code)

2001-06-21 Thread infoz
ager, supports the lists of variable hashes you talked about, so that you can give it a big associative array instead of doing a series of set() calls for each variable. - Tim http://www.phptemplates.org - Original Message - From: "scott [gts]" <[EMAIL PROTECTED]> To:

Re: [PHP] Another Template Engine (code)

2001-06-21 Thread TunkeyMicket
Subject: [PHP] Another Template Engine (code) i wrote a simple classified and hash-enabled template engine as a sort-of proof of concept placeholders in the template are denoted by %{name}% and they're filled with data by the "regvar()" func.  $te

[PHP] Another Template Engine (code)

2001-06-20 Thread scott [gts]
i wrote a simple classified and hash-enabled template engine as a sort-of proof of concept placeholders in the template are denoted by %{name}% and they're filled with data by the "regvar()" func.  $temp->regvar('name', 'value');   1) class the engine so that you cay have multiple ins