当前位置: 首页 > 图文教程 > 网络编程 > PHP > 在线短消息收发的程序,不用数据库

PHP
checkbox向php传输数据的一点总结
PHP5在IIS 6下的安装
debian配置PHP5+MYSQL+Apache
httpd2+mod_perl-2+php4+openssl0安装
php 命令行参数详解及应用
网站开发流程及各岗位职责
Linux新手入门常用命令大全
HTTP参考
初学PHP的18个基础例程
手工注射php学习
PHP 中dirname(_file_)
php开发wap常用技巧
VML绘图板①主控--VMLgraph.htm
VML绘图板③资源--VMLgraph.xml
VML绘图板④简化的服务器端--server.php、server.asp
VML绘图板⑤浏览--view.php
加快 DHTML 的一组技巧
HTML标签详解
PHP系列基础教程(一)--兔子窝边草
XML轻松学习手册

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


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-13   浏览: 98 ::
收藏到网摘: n/a

login.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=text name="name">
<input type=submit name=submit value="进入">
</form>
hframe.php
<frameset cols="0,*">
<frame name="contents" src="autosend.php">
<frame name="main" src="smessage.php">
<noframes>
<body>
<p>此网页使用了框架,但您的浏览器不支持框架。</p>
</body>
</noframes>
</frameset>
smessage.php
<?session_start();
if(isset($submit)){
$fp=fopen("test.txt","a+");
$temp="\r\n".$rmessage."|".$content."|".$nickname."|0";
fputs($fp,$temp);
exit;
}
?>
:<form name=form1 action="smessage.php" method="post">
接收方<input type=text name=rmessage><br>
内容:<br><textarea name=content rows=20 cols=30>
</textarea><br>
<input type=submit name=submit value=submit>
</form>
<? 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)&&$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);
?>
这只是个简单的例子,更多的修饰就靠你自己了!