목록만 뽑아내기~~ :)
- 10-26
- 7,912 회
- 7 건
<?
$_path='kchat/'; //현재 주소를 기준으로 kilhochat이 설치된 경로
include $_path."config_dat.php";
$db=@mysql_connect("$host","$user","$password");
@mysql_select_db("$dataname",$db);
$result=mysql_query("select * from $tablename order by id desc");
while($row=@mysql_fetch_array($result)) {
if($row[guestid])
{ $row[title]=str_replace("<","<","$row[title]");
?>
방제 : <?=$row[title]?><br>
방장 : <?=$row[uid]?><br>
인원수 : <?=$row[guestmax]?> / <?=$row[max]?><br>
참가자 : <? $guestnick=explode('*!)',$row[guestnick]);
foreach ($guestnick as $key => $value) echo urldecode($value).' '; ?>
<br><hr>
<? }} ?>
$_path='kchat/'; //현재 주소를 기준으로 kilhochat이 설치된 경로
include $_path."config_dat.php";
$db=@mysql_connect("$host","$user","$password");
@mysql_select_db("$dataname",$db);
$result=mysql_query("select * from $tablename order by id desc");
while($row=@mysql_fetch_array($result)) {
if($row[guestid])
{ $row[title]=str_replace("<","<","$row[title]");
?>
방제 : <?=$row[title]?><br>
방장 : <?=$row[uid]?><br>
인원수 : <?=$row[guestmax]?> / <?=$row[max]?><br>
참가자 : <? $guestnick=explode('*!)',$row[guestnick]);
foreach ($guestnick as $key => $value) echo urldecode($value).' '; ?>
<br><hr>
<? }} ?>
-
-
-
멋진팁인데요
방이 없을경우에 백지로만 나오니까 너무 허전해서...
방이 없을경우에는 특별한 멘트가 나오게 할수는 없을까요?
예를 들어 "현재 방이 없으니 대화방을 개설해서 채팅해 보아요~"
뭐 그런 멘트가 나오게 할수 있는 방법이 있을까요???- 04-02-20
-
-
include $_path."config_dat.php";
이걸.. include $con_path."config_dat.php"; 이렇게 바꾸면 되는군요..저의경우는..쩌ㅃ~!- 03-12-24
-
-
인덱스파일(index.html, index.htm)의 채팅최근목록을 나타내고자 하는 부분에 복사해서
사용하면 됩니다....
실제로 사용되고 있는 nbmfriend.com 메인화면의 index.html 파일의 소스보기에서 확인해 보세요..
보이는 곳은 메인화면의 자료실왼쪽에 있는 게임의 빈 공간에 방이 개설되면 채팅방 목록이
나오는 곳입니다. 로긴하실때는 test / test 로 들어오세요.. 방만들고 나서 메인화면을
새로고침하면 채팅방 목록이 나올겁니다...[01]- 03-11-02
-
-
-