This topic is locked

Smarty

7/30/2007 5:03:20 PM
PHPRunner General questions
author

What exactly is Smarty? For example, on the 'view.php page
ID -

$value="";

$value = ProcessLargeText(GetData($data,"ID", ""),"","",MODE_VIEW);

$smarty->assign("show_ID",$value);

Alexey admin 7/31/2007

Hi,
Smarty is a template engine that allows to separate PHP code and HTML pages.

So you can edit HTML pages in Visual Editor.

Here is Smarty site:

http://smarty.php.net/
The code you posted will replace {$show_ID} in ..._view.htm file with actual ID value.