vote up 1 vote down star
1

hi , 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

flag

29% 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 at 7:25

3 Answers

vote up 0 vote down check

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|flag
vote up -2 vote down

sir I did as u suggest ,but there is error something like: Catchable fatal error: Object of class DateTime could not be converted to string

link|flag
1  
Stackoverflow is not like a "common" discussion forum. There are no chronologically ordered message threads. Please use a comment for something like this. – VolkerK Sep 30 at 7:22
sorry sir, I'm just confused – amol Sep 30 at 7:31
sir i use mysql database, plz if u have any idea help,thanks once again – amol Sep 30 at 7:34
This means your string isn't in the format expected by strtotime - use mktime to stitch the parts into a real date and use that for the comparison. – Sohnee Sep 30 at 7:39
thanks mike sir its working thanks a lot. – amol Sep 30 at 7:43
vote up 1 vote down

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|flag
+1 for DateTime Object – solomongaby Sep 30 at 7:47

Your Answer

Get an OpenID
or

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