<?php
require_once "../islayout.php";
$html=<<<END
<p> </p>
<p align="center"> </p>
<p align="center"><b>Remove Function Example:</b></p>
<p align="center"> </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();
?>
|