compare dates not working

bakspamshooth

New Member
Hallo,I am comparing 2 dates. It is clear that $db_minus7 is greater so the value of $can_invoiced should be 'maybe' but it is 'Yes'. When i execute.\[code\]<?php$db_minus7 = '2010-07-05 09:45:29.420';$completion_date = '30.07.2009';if(date("m-d-Y",strtotime($db_minus7)) > date("m-d-Y",strtotime($completion_date))) { $can_invoiced = 'maybe';} else { $can_invoiced = 'Yes';}echo $can_invoiced;?>\[/code\]please help
 
Back
Top