How to implement display like smarty in PHP?
Posted
by Mask
on Stack Overflow
See other posts from Stack Overflow
or by Mask
Published on 2009-11-19T06:09:19Z
Indexed on
2010/03/24
23:13 UTC
Read the original article
Hit count: 217
$smarty->assign('name',$value);
$smarty->display("index.html");
So that it automatically replaces $variables
in index.html which saves a lot of echo
?
© Stack Overflow or respective owner