欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php写的简易聊天室代码_PHP教程

程序员文章站 2022-05-21 11:32:11
...
index.php
复制代码 代码如下:


<br>在线聊天 <br>









_a.php
复制代码 代码如下:


<br>聊天室 <br>

$person = @$_POST[person];
$msg = @$_POST[message];
if ($person!="" && $msg!=""){
$handle = fopen("msg.txt","r");
$tot = 0;
$oldmsg = array();
while ($content = fgets($handle)){
$oldmsg[] = $content;
++$tot;
}
fclose($handle);
unlink("msg.txt");
$fp = fopen("msg.txt","a+");
$time = date("h:i");
fwrite($fp,"".$person."&nbspin&nbsp".$time."&nbsp&nbspsays that&nbsp&nbsp".$msg."
"."\n");
for ($i =0;$iif ($i>50) break;
fwrite($fp,$oldmsg[$i]);
}
}
?>




























昵称:













_b.php
复制代码 代码如下:



<br>聊天室 <br>



$handle=fopen("msg.txt","r");
//$oldmsg = array();
while ($content = fgets($handle)){
//$oldmsg[] = $content;
//++$tot;
echo $content;
}
?>



php写的简易聊天室代码_PHP教程

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/323403.htmlTechArticleindex.php 复制代码 代码如下: html headTitle 在线聊天 /title/head !-- frames -- frameset rows="70%,*" BORDER="0" frame name="top" src="_b.php" marginwidth="0" marginheigh...