本程序只是设为12小时,实际自已而定。
修改vbb的newthread.php文件:
把下面这一段放在require(“./global.php”);下面:
//12小时内不能发贴
$empirer=$DB_site->query_first(“select joindate from user where userid=’$bbuserinfo[userid]'”);
$time12=time()-$empirer[joindate];
if($time12<=12*3600)
{
?>
<script language=javascript>
alert(“在刚注册的12小时内您无权发贴!谢谢合作。”);history.go(-1);
</script>
<?
exit();
}
原创:帝国创建人 wm_chief
原贴地址:http://bbs.phome.net/ShowThread/?threadid=235&forumid=2
或许那段JS可以用
eval(standard_error(fetch_error(‘在刚注册的12小时内您无权发贴!谢谢合作。’)));