<?php
/* Example use of tag class by svacant.com */
require_once("tag.class.php");
$tag = new tag();
$tag->modality = 'echo';
$tag->open_b2w('a','href=index.htm,target=_blank','ClickMe');
$tag->open('div','class=myclass');
echo "The content of Div";
$tag->close('div');
?>
|