*** empty log message ***

This commit is contained in:
andrey
2001-02-01 22:24:28 +00:00
parent fb5f555e10
commit fa325b0a0d

6
README
View File

@@ -9,10 +9,13 @@ AUTHORS:
Monte Ohrt <monte@ispi.net> Monte Ohrt <monte@ispi.net>
Andrei Zmievski <andrei@ispi.net> Andrei Zmievski <andrei@ispi.net>
MAILING LIST: MAILING LIST:
We have a mailing list for you to share your ideas or ask questions. We have a mailing list for you to share your ideas or ask questions.
send a blank e-mail message to subscribe-smarty@lists.ispi.net send a blank e-mail message to subscribe-smarty@lists.ispi.net
SYNOPSIS: SYNOPSIS:
require("Smarty.class.php"); require("Smarty.class.php");
@@ -24,13 +27,14 @@ SYNOPSIS:
$smarty->display("index.tpl"); $smarty->display("index.tpl");
DESCRIPTION: DESCRIPTION:
What is Smarty? What is Smarty?
Smarty is a template engine for PHP. One of the unique aspects about Smarty is a template engine for PHP. One of the unique aspects about
Smarty that sets it apart from other templating solutions is that it Smarty that sets it apart from other templating solutions is that it
compiles the templates into native php scripts upon the first converts the templates into native php scripts upon the first
execution. After that, it just executes the compiled PHP scripts. execution. After that, it just executes the compiled PHP scripts.
Therefore, there is no costly template file parsing for each request. Therefore, there is no costly template file parsing for each request.