实在没有办法的话,可不可以这样,增加那个弹出按钮的功能,按了“确认”后把当前页面关闭掉,这样就好了,可那个关闭页面的PHP代码我不知道是什么,加哪才好。
$lastpost = "$thread[tid]\t".addslashes($thread['subject'])."\t$timestamp\t$author";
$db->query("UPDATE {$tablepre}forums SET lastpost='$lastpost', posts=posts+1, todayposts=".todayposts()." WHERE fid='$fid'", 'UNBUFFERED');
if($forum['type'] == 'sub') {
$db->query("UPDATE {$tablepre}forums SET lastpost='$lastpost' WHERE fid='$forum[fup]'", 'UNBUFFERED');
}
jsmessage('非常感谢,您的回复已经发布。请刷新页面查看最新结果。', $refer);
}
function jsmessage($show_message, $url_forward = '', $extra = '') {
$show_message = addcslashes($show_message, '"');
echo '<script type="text/javascript">'."\n";
echo 'alert("'.$show_message.'");'."\n";
echo '</script>'."\n";
exit;
}
?> |