HTML interesse |
|
Ik gebruik WordPress, wellicht handig om te weten, en heb een customfield waar een datum instaat. Daar gebruik ik $custom1 voor.
@Waldio: ik heb jou manier geprobeerd, maar dat is niet gelukt. Of mag ik het niet zo toepassen?
$custom_1 = date('d-m-o', strtotime($custom_date));
if( $custom_1 < date('d-m-o') )
{
echo "komt nog";
}
else {
echo "geweest";
}
if( $custom_1 < date('d-m-o') ) { } else { }
EDIT:
Het is gelukt!
$exp_date = $custom_1;
$todays_date = date("d-m-o");
$today = strtotime($todays_date);
$expiration_date = strtotime($exp_date);
if ($expiration_date > $today) {
$valid = "yes";
echo '<span style="color:green;">'.$custom_1.'</span>';
} else {
$valid = "no";
echo '<span style="color:red;">'.$custom_1.' - Fair expired, please send new report!</span>';
}
}
$exp_date = $custom_1; $todays_date = date("d-m-o"); if ($expiration_date > $today) { $valid = "yes"; echo '<span style="color:green;">'.$custom_1.'</span>'; } else { $valid = "no"; echo '<span style="color:red;">'.$custom_1.' - Fair expired, please send new report!</span>'; } }
|