PHP Classes

File: example5.php

Recommend this page to a friend!
  Classes of Richard Munroe   dm.IS Layout   example5.php   Download  
File: example5.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: 429 bytes
 

Contents

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

$html=<<<END
<p>&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center"><b>Remove Function Example:</b></p>
<p align="center">&nbsp;</p>

<!-- remove id="removetext" -->
    <p align="center">Remove this Text</p>
<!-- end remove -->

END;

$lay = new IS_Layout($html);

// Replace the code named bold by $htmlItalic
$lay->remove('removetext');

$lay->display();
?>