<label for="web">Web name:</label><br><br> <input type="text" id="web" name="web" /><br><br> <input type="submit" value="Create"/> </form> </fieldset> <fieldset> <legend>Webs</legend> <form action="webs.php" method="post"> <table id="table-1" summary="tables"> <thead> <tr> <th scope="col"></th> <th scope="col">Web</th> <th scope="col">Edit</th> </tr> </thead> <tbody> <?php $web->show(); ?> </tbody> </table> <input type="submit" value="Delete Selected"/> </form> </fieldset> </div> <?php //theme footer include_once 'themes/' . THEME . '/footer.php'; //required includes at end require_once 'inc/bottom.php';