Date Expiration
-
Is there a way to remove data from a loop after an expired date? My idea was to write a function like this:
<?php
$checkDate = function($check) {
if(isset($check) && $check > ‘F jS, Y’) {
return true;
} else {
return false;
}
};
?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Date Expiration’ is closed to new replies.