- 注册
- 2002-10-12
- 消息
- 47,114
- 荣誉分数
- 2,376
- 声望点数
- 393
最近在搞一个IPB的HACK
http://torune.hundun.org/bbs/index.php?showtopic=321&st=0
界面copy msn的[版权问题以后再说]
现在就是关于instant messenger的问题了
我想给他添加一个聊天纪录的功能
例如保存15个聊天纪录
但是我只想用一个table
这样写效率高吗?
http://torune.hundun.org/bbs/index.php?showtopic=321&st=0
界面copy msn的[版权问题以后再说]
现在就是关于instant messenger的问题了
我想给他添加一个聊天纪录的功能
例如保存15个聊天纪录
但是我只想用一个table
代码:
MySQL:
CREATE TABLE ibf_history (
id varchar(10) NOT NULL default '',
history text NOT NULL default ''
)
PHP:
$DB->query("SELECT * FROM ibf_history WHERE id='".$this->member['id']."'");
$this->member = $DB->fetch_row();
$this->data = explode("|!:!|",$this->member['history']);
$info['COUNT'] = count($this->data);
for ($i=0;$i<=$info['COUNT']-1;$i++)
{
$info['LIST'] .= $this->data[$i]."\r\n
";
}
print $info;
这样写效率高吗?