<?php include "class.docket.php"; $obj = new docket(); ?> </head> <body> <?php include_once 'include/menu.php'; ?> <div class="content1"> <div class="welcome"><h3>Welcome <?php echo $_SESSION['username']; ?> !</h3></div> <table id="datatabe" cellpadding="0" cellspacing="0" border="0" class="display" > <thead> <tr> <td><b>S.no</b></td> <td><b>Applicant/Client NAME</b></td> <td><b>Applicant/Client CODE</b></td> <td><b>Action</b></td> </tr> </thead> <tbody> <?php $obj->users_list(); ?> </tbody> </table> </div> </body> </html>