PHP头条
热点:

php写的简易聊天室代码


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." in ".$time."  says that  ".$msg."
"."\n");
for ($i =0;$i<$tot;++$i){
if ($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;
}
?>



www.phpzy.comtrue/phpyy/18879.htmlTechArticlephp写的简易聊天室代码 index.php 代码如下: 在线聊天 _a.php 代码如下: 聊天室 $person = @$_POST[person]; $msg = @$_POST[message]; if ($person!="" $msg!=""){ $handle = fopen("msg.txt","r"); $tot = 0; $oldmsg = array(); w...

相关文章

PHP之友评论

今天推荐