login.php
<?if(isset($submit)){
session_start();
$nickname=$name;
session_register(“nickname”);
header(“location:hframe.php”);
}?>
hframe.php
<frameset cols=”0,*”>
<frame name=”contents” src=”autosend.php”>
<frame name=”main” src=”smessage.php”>
<body>
此网页使用了框架,但您的浏览器不支持框架。
smessage.php
<?session_start();
if(isset($submit)){
$fp=fopen(“test.txt”,”a+”);
$temp=”\r\n”.$rmessage.”|”.$content.”|”.$nickname.”|0″;
fputs($fp,$temp);
exit;
}
?>
:
接收方
内容:
<? session_start();
echo “<meta http-equiv=’refresh’ content=’6;url=autosend.php’>”;
$fl=file(“test.txt”);
$temp=””;
for($i=0;$i<count($fl);$i++){
$sflag=explode(“|”,$fl[$i]);
if(($sflag[3]==0)&&$sfl)本文来(源gaodai#ma#com搞@@代~&码*网2
搞代gaodaima码
ag[0]==$nickname){
echo”<script>window.open(‘list.php?Smessage=$sflag[2]&Content=$sflag[1]’,’newwin’,’toolbar=no location=no’)</script>”;
}else{
$temp.=$fl[$i];
}
}
$fp=fopen(“test.txt”,”w”);
fputs($fp,$temp);
?>
这只是个简单的例子,更多的修饰就靠你自己了!