JezK
Edit File: renewalNotifications.php
<?php $currentPage="renewalNotifications"; include("header.php"); include("app/getRenewalUsers.php"); ?> <div id="page-wrapper"> <div class="container-fluid"> <!-- Page Heading --> <div class="row"> <div class="col-lg-12"> <h1 class="page-header"> <small>Notifications </small> </h1> </div> </div> <!-- /.row --> <div class="row"> <div class="table-responsive"> <div class="col-md-12"> <h3>Near to Renewal</h3> <table id="example" class="table table-striped table-bordered" cellspacing="0" width="100%"> <thead> <tr> <th>S.No</th> <th>Application</th> <th>S-Ref id</th> <th>Name </th> <th>Renewal Date</th> <th>Details</th> </tr> </thead> <tbody> <?php echo $renewalUsers; ?> </tbody> </table> </div> </div> </div> <!-- /.row --> <div class="row"> <div class="table-responsive"> <div class="col-md-12"> <h3>Expired</h3> <table id="example2" class="table table-striped table-bordered" cellspacing="0" width="100%"> <thead> <tr> <th>S.No</th> <th>Application</th> <th>R-Ref id</th> <th>Name </th> <th>Expiry Date</th> <th>Details</th> </tr> </thead> <tbody> <?php echo $expiredUsers; ?> </tbody> </table> </div> </div> </div> <!-- /.row --> </div> <!-- /.container-fluid --> </div> <!-- /#page-wrapper --> <?php include("footer.php");?> <script> function notify(notificationType,userID) { $.post('app/ajax.php',{type:3,notificationType:notificationType,userID:userID},function(result) { alert('Mail sent successfully.'); }); } </script>