0

出力データのスタイルを設定しようとしていますが、これを正確に行う方法がわかりません。

私のコードは次のようになります:

$Sql99 = "SELECT Cat_Name, Cat_Id, COUNT(Product_Id) AS itemcount FROM tabproducts 
      INNER JOIN tabcats ON tabproducts.Cat_Id = tabcats.Cat_Id  
      GROUP BY tabproducts.Cat_Id ORDER BY itemcount DESC LIMIT 0,4";
$Query99 = mysql_query($Sql99, $Conn);
while($Rs99 = mysql_fetch_array($Query99)){ 

 $cats .= "<li><a href=\"\">".$Rs99["Cat_Name"]."</a></li>"; //this is fine


 $Sql08 = "SELECT tabproducts.*
      FROM tabproducts
      WHERE tabproducts.Cat_Id = '".$Rs99["Cat_Id"]."' ORDER BY Product_Id DESC
      LIMIT 0,5";
$Query08 = mysql_query($Sql08, $Conn) or die(mysql_error());
while($Rs08 = mysql_fetch_array($Query08)){

//OUTPUT

}
 }

私の問題は、2番目に私が試している情報を選択することです。出力は次のようになります。

      <div>
        <ul class="home-listagem-empresas"> //categorie 1
          <li>
            <h1>".$Rs08["Product_Name"]."</h1>
          </li>
          <li>
            <h1>".$Rs08["Product_Name"]."</h1>
          </li>
        </ul>
      </div>
      <div>
        <ul class="home-listagem-empresas"> //categorie 2
          <li>
            <h1>".$Rs08["Product_Name"]."</h1>
          </li>
          <li>
            <h1>".$Rs08["Product_Name"]."</h1>
          </li>
        </ul>
      </div>
      <div>
        <ul class="home-listagem-empresas"> //categorie 3
          <li>
            <h1>".$Rs08["Product_Name"]."</h1>
          </li>
          <li>
            <h1>".$Rs08["Product_Name"]."</h1>
          </li>
        </ul>
      </div>
      <div>
        <ul class="home-listagem-empresas"> //categorie 4
          <li>
            <h1>".$Rs08["Product_Name"]."</h1>
          </li>
          <li>
            <h1>".$Rs08["Product_Name"]."</h1>
          </li>
        </ul>
      </div>

それぞれulに「」が付いているli場合は、4つのカテゴリの結果を表します。

うまく説明できないと申し訳ありませんが、私の英語はあまり上手ではありません。

4

1 に答える 1

1

If I understand correctly your problem is that you are unable to present the data in a way that is convenient for you. These types of problems (nested loops) occur a lot in application development and you should probably look into practicing basic algorithms for this. Here are a couple of tutorials to help you out.

That being said, to obtain the output you desire, you would do this:

$cats .= "<div><ul class='home-listagem-empresas'>";
while($Rs08 = mysql_fetch_array($Query08)){
  //OUTPUT
  $cats .= "<li><h1>".$Rs08["Product_Name"]."</h1></li>";
}
$cats .= "</ul></div>";

All the best,

于 2012-12-06T22:25:39.923 に答える