你是指在点击超链接的时候同时插入一条纪录吗?
那得用ajax来实现了.
Demo
提高效率建议增加一个ID字段设置值为自动编号
//page1.php
$row=mysql_query("select * from information order by id desc");
while($rs=mysql_fetch_array($row)){
echo ''.$rs['title'].'';
echo '
';
}
以上是输出列表
//page2.php
$id = isset($_GET['id']) ? $_GET['id'] : 0;
$row = mysql_query("select * from information where id =");
$rs = mysql_fetch_array($row);
echo $rs['detail'];
//以上输出内容