arukiri123
arukiri123

Reputation: 141

comparing date and time php

i need to compare two dates where if one date is greater than the other then an 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 its not working. please help

Upvotes: 3

Views: 1249

Answers (2)

sourcecode
sourcecode

Reputation: 1802

try this,

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

Upvotes: 2

Anthony
Anthony

Reputation: 811

could you try and use the date format before using strtotime

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

Upvotes: 1

Related Questions