VlibTemplate
VlibTemplate is a template language created in 2003. vlibTemplate is a template engine written in PHP. Programmers and web developers may use it for web development. vlibTemplate is a PHP class that is intended to make splitting PHP from HTML a simple and natural task, using markup tags. Read more on Wikipedia...
17Years Old | 20Users | ?Jobs |
- the VlibTemplate wikipedia page
- VlibTemplate first appeared in 2003
- See also: php, html, mysql, postgresql
- Have a question about VlibTemplate not answered here? Email me and let me know how I can help.
Example code from Wikipedia:
require_once 'vlib/vlibTemplate.php'; $tmpl = new vlibTemplate('tmpl/basic.htm'); $tmpl->setvar('title_text', 'TITLE: This is the vLIB basic example ...'); $tmpl->setvar('body_text', 'BODY: This is the message set using setvar()'); $tmpl->setvar('div_cont' , 'DIV : This is div paragraph'); $tmpl->pparse();
Last updated August 9th, 2020