How to make jQuery / Prototype / MooTools & others play nicely with Smarty
Smarty is the first template engine I have learned and used in my projects. Smarty makes your PHP code cleaner and promotes the V in MVC. Here is an example of Smarty template:
User
User Information:
Name: {$name}
Smarty will replace the {$name} with the variable that you set in your PHP code. Anyway, do you see the
User Information:
Name: {$name}
Smarty will replace the {$name} with the variable that you set in your PHP code. Anyway, do you see the
Comments
Post a Comment