Login   Register  
PHP Classes
elePHPant
Icontem

File: example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of vench  >  Vs View Render  >  example.php  >  Download  
File: example.php
Role: Example script
Content type: text/plain
Description: example
Class: Vs View Render
Render templates using parameter arrays
Author: By
Last change:
Date: 2013-07-17 23:20
Size: 262 bytes
 

Contents

Class file image Download
<?php

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */ 
require_once 'VsViewRender.php';

$render = new VsViewRender(array());
$render->render('tmp_content.php', array(
    
'name'=>'Ben',
));

?>