up vote 2 down vote favorite
2
share [g+] share [fb]

I have a mysql database with a php front end. In my records I have an posted date and an expire date directle access from database. What I need to do is check and see if any records expire date matches posted date, Something like:

<?php $posted_date= $row_Recordset1['date_posted']; ?>
<?php $exp_date= $row_Recordset1['expire_date']; ?>      

 <?php if ($posted_date("Y-m-d") >= $exp_date("Y-m-d")) {

//statement

link|improve this question

43% accept rate
$row_Recordset1 sounds like a database result. Which rdbms is it? What's the format of the date values? (echo $row_Recordset1['date_posted'];) – VolkerK Sep 30 '09 at 7:25
feedback

2 Answers

up vote 1 down vote accepted

You could do this:

$posted_date= $row_Recordset1['date_posted'];
$exp_date= $row_Recordset1['expire_date'];      

if (strtotime($posted_date) >= strtotime($exp_date)) {
    // Do whatever
}

This would work assuming that dates from the DB are the standard formated date strings.

link|improve this answer
feedback

You can turn them into Unix timestamps using strtotime, assuming they start out as a string, and then they'll just be integers, which you can compare. Another option would be to use DateTime objects, which can be compared using comparison operators. If your date is represented as a format strtotime understands, you can do $dt=new DateTime($row_Recordset1['expire_date']);

link|improve this answer
+1 for DateTime Object – solomongaby Sep 30 '09 at 7:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.