当前位置:Gxlcms > PHP教程 > 在线短消息收发的程序,不用数据库_PHP教程

在线短消息收发的程序,不用数据库_PHP教程

时间:2021-07-01 10:21:17 帮助过:3人阅读

login.php
session_start();

$nickname=$name;
session_register("nickname");
header("location:hframe.php");
}?>

hframe.php



<br> <body><br><br> <p>此网页使用了框架,但您的浏览器不支持框架。</p><br><br> </body><br>

smessage.php
if(isset($submit)){
$fp=fopen("test.txt","a+");
$temp="\r\n".$rmessage."|".$content."|".$nickname."|0";
fputs($fp,$temp);
exit;
}
?>

echo "";
$fl=file("test.txt");
$temp="";
for($i=0;$i $sflag=explode("|",$fl[$i]);
if(($sflag[3]==0)&&$sflag[0]==$nickname){

echo"";
}else{
$temp.=$fl[$i];
}
}
$fp=fopen("test.txt","w");
fputs($fp,$temp);
?>
这只是个简单的例子,更多的修饰就靠你自己了!

www.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=...

人气教程排行