从a网页输入你的用户名,留言内容,提交后从b网页显示
<?
if(empty($_post['id']))
{
echo"账户不能为空,5秒后自动返回登录界面";
header("refresh:5;url='index.htm'");
}
elseif(empty($_post['guess']))
{
echo"文本不能为空,5秒后自动返回登录页面";
header("refresh:5;url='index.htm'");
}
else {
$id=$_post['id'];
$guess=$_post['guess'];
echo"hello".$id."你想对潮叹潮城网说".$guess."<br />";
}
?>