Home › Forums › Other › Link in a post to appear at a certain time › Re: Link in a post to appear at a certain time
January 18, 2011 at 10:52 am
#65439
Participant
// returns true or false based on if it's a Saturday morning or not - should do anyway :D
function testdate($date = getdate()) {
if($date == 6 && $date <= 12) {
return true;
} else {
return false;
}
}
// you can then use it like this
echo (testdate()) ? "Link" : "";
?>