login.php
session_start();
$nickname=$name;
session_register("nickname");
header("location:hframe.php");
}?>
hframe.php
smessage.php
if(isset($submit)){
$fp=fopen("test.txt","a+");
$temp="rn".$rmessage."|".$content."|".$nickname."|0";
fputs($fp,$temp);
exit;
}
?>
:
session_start();
echo "
";
$fl=file("test.txt");
$temp="";
for($i=0;$i
$sflag=explode("|",$fl[$i]);
if(($sflag[3]==0)&&$sflag[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);
?>
这只是个简单的例子,更多的修饰就靠你自己了!
http://www.bkjia.com/PHPjc/315166.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/315166.htmlTechArticlelogin.php ?if(isset($submit)){ session_start(); $nickname=$name; session_register(nickname); header(location:hframe.php); }? form name=form1 action=login.php method=post input type=...
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn