I'm learning CodeIgniter framework. I have difficulty in PHP to convert the script from CodeIgniter.
How to write a script that I made the change to CodeIgniter?
Here's the code that I have done so far:
<?php
date_default_timezone_set('Asia');
$u = $row->jadwalkal;
$tgl1 = $u;
$tgl2 = date("Y-m-d");
$selisih = strtotime($tgl1) - strtotime($tgl2);
$hari = $selisih/(60*60*24);
if ($hari < 0){
?>
<div class="label label-danger"><?php echo "Telat $hari hari";?></div>
<?php
}elseif ($hari < 7) {
?>
<div class="error message"><?php echo "Tinggal $hari hari";?></div>
<?php
}else{
?>
<div class="error message"><?php echo "Masih $hari hari";?></div>
<?php }
?>