Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other Link in a post to appear at a certain time Re: Link in a post to appear at a certain time

#65439
Rob MacKay
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" : "";

?>