<th>Name</th>
											<th>Leave From</th>
											<th>Leave To</th>
											<th>Apply For</th>
											<th>Leave Type</th>
											<th>Total Remain Days</th>
											<th>Action</th>
										</tr>
										
									</thead>
									
									<tbody>
									
										<?php 
        $objLeaveApplication = new LeaveApplication();
        $result = $objLeaveApplication->getRecomandedApplication();
        while ($row = mysqli_fetch_array($result)) {
            ?>
											<tr>
												<td><?php 
            echo $row['lApplyDate'];
            ?>
</td>
												<td><?php 
            echo $row['eFirstName'] . " " . $row['eLastName'];
            ?>
</td>
												<td><?php 
            echo $row['lLeaveFromDate'];
            ?>
</td>