链接在特定时间之间可见

时间:2013-05-13 23:22:08

标签: php javascript mysql

我希望有人帮助我。

我需要一个链接,在某些时间可见,比如说下午6点&凌晨1点。在我的网站上注册的客户可以在其管理面板中更改商店开放和关闭时间,并连接到数据库中的表。

链接只需在客户端通过其控制面板决定的指定时间内可见。在这些时间的外面,链接隐藏/不可见,不可点击。

所以这需要从每个客户的数据库表中调用/ echo时间。

任何帮助都会很棒。 非常感谢

标记

2 个答案:

答案 0 :(得分:1)

您可以使用类似......

的内容
// check if the date (current hour) is between two times, 
// if it is, assign the link to $link, else assign nothing to $link
$link = date('H') >= 6 && date('H') <= 20 ? '<a href="#">Link</a>' : ''; // replace hardcoded hours with vars if needed
echo $link;

答案 1 :(得分:0)

试试这个:

// Assuming $userMin and $userMax are the users specified times
$time = date( 'H' );
if( $time > $userMin && $time < $userMax ) {
    echo "<a href='linkUrl'>Description</a>";
}