>  기사  >  백엔드 개발  >  omegle 채팅방 PHP로 작성된 간단한 채팅방 코드

omegle 채팅방 PHP로 작성된 간단한 채팅방 코드

WBOY
WBOY원래의
2016-07-29 08:45:222507검색

index.php

코드 복사 코드는 다음과 같습니다.



< ;제목>
온라인 채팅



<프레임 이름="top" src="_b.php" marginwidth="0" marginheight="0" scrolling="yes" FRAMEBORDER="NO" 크기 조정> 프레임 이름= "bottom" src="_a.php" marginwidth="0" marginheight="0" scrolling="no" frameborder="no" noresize>





_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 = 날짜("h:i");
fwrite($fp,"  ".$time."    ".$msg." "."n");
for ($i =0;$iif ($i>50) break;
fwrite($fp, $oldmsg[$i]);
}
}
?>


< ;tr bgcolor="#FFCC66">




>

tr align="left" >



🎜>


;/html>


_b.php



코드 복사

코드는 다음과 같습니다.




채팅방<br>

위 내용은 오메글 채팅방의 내용을 포함하여 오메글 채팅방 PHP로 작성한 간단한 채팅방 코드를 소개한 것입니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되었으면 좋겠습니다.

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.


<테이블 너비 = " 100%" border = " 0">

닉네임: