• 大小: 45KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-07
  • 标签: php  贴吧  新手必学  

资源简介

这是老师家教着做的 希望可以帮助到大家 我是新手 希望大家发现什么错的地方可以告诉我 大家可以互相学习 谢谢!

资源截图

代码片段和文件信息

/*
php和html是可以随意混杂的一块的.
因为在解释的时候解释器是见到*/
require(‘./include/init.php‘);
$sql = ‘select * from thread order by pubtime desc‘; //从大到小排列
$list = getAll($sql$conn);   //取所有帖子
/*最笨的方法得到每个帖子的回复数量
循环帖子列表 然后挨个去查询他们的回帖
foreach($list as $k=>$v){
//echo $v[‘tid‘]‘‘; //打印:10 9 8 7 6 5 4 3 2 ... 
$sql=‘select * from reply where tid=‘.$v[‘tid‘];
//echo count(getAll($sql$conn));//循环计算每个帖子的回复数量  1 4 1 0 0 0 0 
//给$list追加一个回复数量rnum
$list[$k][‘rnum‘]=count(getAll($sql$conn));
}
print_r($list);
Array

    [0] => Array
        (
            [tid] => 10
            [username] => 凌涵韵
            [title] => 面试了
            [content] => 很紧张 很紧张 大家告诉我点经验吧 
            [pubtime] => 1352855222
            [rnum] => 1
        )      多了一个rnum 及时回复数量 只是变了一种方式显示
*/
/*
稍微进步一点点   和上面

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2012-11-13 14:20  tieba\
     目录           0  2012-11-12 08:50  tieba\css\
     文件       54758  2012-10-16 18:51  tieba\css\__page___7c11e86f.css
     文件       11682  2012-10-16 18:52  tieba\css\__page___e78b2984.css
     文件       19965  2012-10-16 18:52  tieba\css\__page___ea4a9f69.css
     文件       44983  2012-10-16 18:51  tieba\css\tb_common_e1801cc9.css
     文件       21850  2012-10-16 18:54  tieba\css\tb_common_lazy_00dd7240.css
     目录           0  2012-11-11 17:40  tieba\include\
     文件         414  2012-11-12 16:09  tieba\include\config.inc.php
     文件        1151  2012-11-13 14:21  tieba\include\init.php
     文件         792  2012-11-12 16:11  tieba\include\mysql.func.php
     文件       14222  2012-11-14 12:21  tieba\index.php
     文件        1847  2012-11-12 17:23  tieba\pubaction.php
     文件         937  2012-11-14 09:58  tieba\repaction.php
     文件       11782  2012-11-17 13:25  tieba\tie.php
     文件         500  2012-10-15 20:17  tieba\之前遇到的问题.txt
     文件         637  2012-11-12 19:15  tieba\开发思路.txt
     文件        1007  2012-11-08 09:17  tieba\数据库建表.txt

评论

共有 条评论