Login   Register  
PHP Classes
elePHPant
Icontem

File: example3.1.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Richard Munroe  >  dm.IS Layout  >  example3.1.php  >  Download  
File: example3.1.php
Role: Example script
Content type: text/plain
Description: example
Class: dm.IS Layout
Fork of the IS layout template engine
Author: By
Last change:
Date: 2005-01-18 04:18
Size: 451 bytes
 

Contents

Class file image Download
<?php
require_once "islayout.php";

$html=<<<END
<html>
<body>

<p align="center">&nbsp;</p>
<p align="center"><b>Today</b>: [date,month]/[date,day]/[date,year]</p>

</body>
</html>
END;

$date['month']=date("m");
$date['day']=date("d");
$date['year']=date("Y");

$lay=new IS_Layout($html);

// First Argument in replace function are ever the reference of variable in HTMl file
$lay->replace('date',$date);

$lay->display();
?>