PHP date and time comparison

I need to compare two dates, when if one date is greater than the other then sql will run. this is my code

date_default_timezone_set('Asia/Kuala_Lumpur');
$date = date('Y-m-d G:i:s');
$query = mysql_query("SELECT * FROM package_transaction");
if(mysql_num_rows($query) > 0) {
    while($row = mysql_fetch_array($query)) {           
        $transac_code = $row['transac_code'];
        $duedate = $row['payment_due'];

        if(strtotime($date) > strtotime($duedate))
        {
            mysql_query("UPDATE package_transaction SET `status` = 'cancelled' WHERE `payment_due` = `$duedate` AND `transac_code` = `$transac_code`");

        }

    }
}

      

but doesn't work. please, help

+3


source to share


2 answers


try it,



 date("Y-m-d", strtotime($date)) >  date("Y-m-d", strtotime($duedate))

      

+2


source


Is it possible to use date format before using strtotime



$duedate = $row['payment_due'];
$duedate = $duedate->format('Y-m-d G:i:s');

      

+1


source







All Articles