pobTag/index.php
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://code.jquery.com/jquery-3.6.1.min.js" integrity="sha256-o88AwQnZB+VDvE9tvIXrMQaPlFFSUTR+nldQm1LuPXQ=" crossorigin="anonymous"></script>
<title>PobTag</title>
</head>
<body>
<h2>PobTag example</h2>
<?php
include('pobTag.php');
$ul=new pobTag('ul');
$ul->put();
$li0=new pobTag('li');
$li0->html('<a href="hello.php">Hello world</a>');
$li0->closeNow();
$li1=new pobTag('li');
$li1->html('<a href="forms.php">Ajax Forms</a>');
$li1->closeNow();
$ul->close();
pobTagRend();
?>
</body>
</html>