PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Raskin Veniamin   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: 11 years ago
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',
));

?>