MOON
Server: Apache
System: Linux nserver.cafsindia.com 4.18.0-553.104.1.lve.el8.x86_64 #1 SMP Tue Feb 10 20:07:30 UTC 2026 x86_64
User: cafsindia (1002)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: //home/cafsindia/hrms_cafsindia_com/application/views/increment_approval/view_log.php
<div id='table_holder' style='min-height:500px;'>
	<?php
	$tr_line = "";
		foreach ($log_qry_result as $key => $value) {
			$updated_date = date("d-m-Y H:i:s",strtotime($value->trans_created_date));
		 	$tr_line .= "<tr><td>$value->column_name</td><td>$value->percentage</td><td>$value->old_value</td><td>$value->new_value</td><td>$value->updated - $value->emp_name</td><td>$updated_date</td></tr>";
		 } 
	?>
	<table id='log_tbl' class='table table-hover'>
		<thead>
			<tr>
				<th>Transaction Column</th>
				<th>Percentage</th>
				<th>Old value</th>
				<th>Updated Value</th>
				<th>Updated By</th>
				<th>Updated Date</th>
		</thead>
		<tbody>
			<?php echo $tr_line; ?>
		</tbody>
	</table>
</div>
<script type="text/javascript">
	$(document).ready(function(){
		$('#log_tbl').DataTable();
	});
</script>