『回复列表(41|隐藏机器人聊天)』
<?php
header("content-type:text/html;charset=UTF-8");
error_reporting(1);
echo"<title>~欢迎光临</title>";
include"func.php";
$tid=(int)$_GET['tid'];
$lid=(int)$_GET['lid'];
$row=getOneLink($tid,$lid);
if(!$row){
echo"木有这个链";
die;
}
$host="http://".$_SERVER['SERVER_NAME'];
header("refresh:3;url={$host}");
echo<<<HTML
欢迎你,来自<a href="{$row->url}">{$row->qc}</a>的朋友<br/>3秒后跳转本站<a href="{$host}">首页...</a>
HTML;
?>