47 lines
2.0 KiB
PHP
47 lines
2.0 KiB
PHP
<?php
|
|
|
|
//include('pdf_header.php');
|
|
error_reporting(E_ERROR | E_PARSE);
|
|
include('includes/config/config.php');
|
|
include('includes/functions.php');
|
|
header('Content-disposition: attachment; filename=excel_training_Schedule.xls');
|
|
?>
|
|
<table width="100%" >
|
|
<tr><div style="font-size:12px">
|
|
<td width="25%" align="left"> Run Date : <?php echo date("d-M-Y"); ?></td>
|
|
<td width="50%" align="center" style="font-size:40px"><strong>Training Excel Schedule</strong></td>
|
|
<td width="25%" align="left"> User : <?php echo $username ?></td>
|
|
</tr>
|
|
</table>
|
|
<table border="1">
|
|
<?php
|
|
$sql="select * from training_schedule";
|
|
//echo $sql;
|
|
|
|
|
|
$result = mysqli_query($conn,$sql);
|
|
|
|
//echo $result;
|
|
|
|
?><tr bgcolor='#eeeeee'><th width=5%>Id</th><th width=15%>Training Name</th><th width=15%>From Date</th><th width=15%>To Date</th><th width=15%>Trainer Name</th><th width=15%>Location</th><th width=15%>Remarks</th>
|
|
</tr><?php
|
|
while($row_traning=mysqli_fetch_array($result)){
|
|
|
|
$training_mode=getTableFieldValue('training_mode','training_mode_name','training_mode_id',$row_traning['mode_of_training']);
|
|
$training_name=getTableFieldValue('training_master','training_name','training_master_id',$row_traning['training_id']);
|
|
//$checkup_name=$row_checkup['checkup_mgmt_name'];
|
|
// $sql1="select * from checkup_type where checkup_type_id=$checkup_name";
|
|
// $result1 = mysqli_query($conn,$sql1);
|
|
//$row_checkup=mysqli_fetch_array($result1);
|
|
//$checkup_type=getTableFieldValue('checkup_type','checkup_type_name','checkup_type_id',$row1['checkup_mgmt_name'],'');
|
|
$from_date=date_format(date_create($rows_schedule['from_date']),"d-M-Y");
|
|
$to_date=date_format(date_create($rows_schedule['to_date']),"d-M-Y");
|
|
|
|
?><tr><td><?php echo $row_traning['schedule_id']?></td><td><?php echo $training_name?></td><td><?php echo $from_date?></td><td><?php echo $to_date ?></td><td><?php echo $row_traning['trainer_name']?></td><td><?php echo $row_traning['location']?></td><td><?php echo $row_traning['remarks']?></td>
|
|
</tr><?php
|
|
}
|
|
?>
|
|
</table>
|
|
<?php
|
|
//include('pdf_footer.php');
|
|
?>
|