功能中的循环不能正常工作

时间:2013-10-12 21:38:24

标签: php

有人可以帮我清理这个功能并使其正常工作吗?

它应该是这样的:http://gyazo.com/04c31a3edaabeca5f5c6376f1cb607ca.png 除了类别之外,它应该只列出与cat_id匹配的类别。

但页面看起来很奇怪。 这就是现在的样子:http://gyazo.com/f217603bede98210dce21328e1aab34f.png

function getcatposts($cat_id) 
{
    $sql = mysql_query("SELECT COUNT(*) FROM `topics`");
    if(!$sql){
      echo 'Error: ',mysql_error();
    }
    $r = mysql_fetch_row($sql);

    $numrows = $r[0];
    $rowsperpage = 10;

    $totalpages = ceil($numrows / $rowsperpage);

    echo '
<table class="table table-striped table-bordered table-hover">  
        <thead>  
          <tr class="info">  
            <th>Title</th>  
            <th>Username</th>  
            <th>Date</th>  
            <th>Category</th>  
          </tr>  
        </thead>';
    if(isset($_GET['currentpage']) && is_numeric($_GET['currentpage'])) {
       $currentpage = (int) $_GET['currentpage'];
    } else {
       $currentpage = 1;
    }

    if($currentpage > $totalpages) {
       $currentpage = $totalpages;
    }

    if($currentpage < 1) {
      $currentpage = 1;
    }

    $offset = ($currentpage - 1) * $rowsperpage;

    $sql = mysql_query("SELECT * FROM `topics` ORDER BY topic_id DESC LIMIT $offset, $rowsperpage");
    if(!$sql){
      echo 'Error: '.mysql_error();
    }
    $link = mysqli_connect("localhost", "lunar_lunar", "", "lunar_users");
    $qc = mysqli_query($link, "SELECT * FROM topics WHERE topic_cat='$cat_id'");

    while($row = mysqli_fetch_array($qc)) 
    {
      $topic_title[]=$row['topic_subject'];
      $topic_id[]=$row['topic_id'];
    }

    $qc2 = mysqli_query($link, "SELECT * FROM categories WHERE cat_id='$cat_id'");

    while($row2 = mysqli_fetch_array($qc2)) 
    {
      $cat_name[]=$row2['cat_name'];
    }
    for ($i=0; $i < count($topic_id); $i++) 
    {
      echo '
        <tbody><tr>
          <td><a href="topic.php?id='.$topic_id[$i].'">'.$topic_title[$i].'</a></td>
          <td><a href="../public.php?id='.$res['topic_by'].'">'.getOwner($res['topic_by']).'</td></a>
          <td>'.$res['topic_date'].'</td>
          <td>'.$cat_name[$i].'</td>
        </tr></tbody>
            ';
    }
}

1 个答案:

答案 0 :(得分:2)

首先,我没有看到$ res定义在哪里,这可以解释为什么主题和主题日期没有显示任何内容。也许你忘了更改变量名?

第二,您选择的是特定类别的名称,因此只会有一个结果行。循环浏览主题时,您将显示第一个主题,但cat_name [1]和cat_name [2]将为空。由于您知道您只选择一个类别,因此只需将结果分配给变量而不是数组。 cat_name而不是cat_name []

你说:

SELECT * FROM categories WHERE cat_id='$cat_id'

假设cat_id是表的主键,您将永远不会有多个结果。

当你将它分配给cat_name []时,你会这样:

while($row2 = mysqli_fetch_array($qc2)) 
    {
      $cat_name[]=$row2['cat_name'];
    }

它将获取一行并将其分配给$ cat_name [0]。

问题出现在这里:

<td>'.$cat_name[$i].'</td>
循环内部$ i正在递增,在这种情况下它将经历3次。 $ cat_name [0]将返回“web development”。但是$ cat_name [1]和$ cat_name [2]什么都没有。要么只是调用$ cat_name [0]而不是$ cat_name [$ i],要么将值分配给普通的$ cat_name并在循环中调用它。