i have to show links on time basis. between 12a.m. to 2a.m. it should show abc.com and all othe time it should not show any link
how to do it?
how to do it?
if(date('G')>12) echo "link1";
else echo "link2";
<?php date_default_timezone_set("Asia/Calcutta"); $t=date("h.i"); if($t>='00.00' and $t<'02.00') echo '<a href="http://abc1.com">abc</a>'; ?>
Comment