PHP Classes

File: example3.php

Recommend this page to a friend!
  Classes of Richard Munroe   dm.IS Layout   example3.php   Download  
File: example3.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: 19 years ago
Size: 392 bytes
 

Contents

Class file image Download
<?php
require_once "class.IS_Layout.php";

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

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

</body>
</html>
END;

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

$lay=new IS_Layout($html);

$lay->replace('month',$month);
$lay->replace('day',$day);
$lay->replace('year',$year);

$lay->display();
?>