0

我正在尝试以这种方式在网页中按类别打印项目的内容:

类别 1:
项目 1 项目 2 项目 3 项目 4
项目 5...

类别
2 项目 1 项目 2 ...

这是我的 PHP 代码:

$cat="";
$maxcols = 3;
$i = 0;

while ($row = $result->fetch_assoc()) {

    if ($i == $maxcols) {
        $i = 0;
        echo "</tr><tr>"; 
    }

    if($row['name']!=$cat)
    { 
        echo "<table>
        <tr><td collspan='3'>".$row['name']."</td></tr>
        <tr>";
    }

    echo "<td>".$row['title']."</td>";
    $cat=$row['name'];
    $i++;

}

while ($i <= $maxcols) {
    echo "<td>&nbsp;</td>";
    $i++;
    echo "</table>";
}

我得到的是:

<table>
<tr><td collspan='3'>Archivers</td></tr>
<tr><td>7-Zip</td><td>IZArc</td><td>dfssdfsdf sdfsdf</td></tr><tr><td>fgdgdfgd</td><td>sdfsdfsdfsdf dsfsdfsd</td><table>
<tr><td collspan='3'>Benchmark</td></tr>
<tr><td>Fresh Diagnose</td><td>&nbsp;</td></table>

我想要得到的是:

<table>
<tr><td collspan='3'>Archivers</td></tr>
<tr><td>7-Zip</td><td>IZArc</td><td>dfssdfsdf sdfsdf</td></tr>
<tr><td>fgdgdfgd</td><td>sdfsdfsdfsdf dsfsdfsd</td>**<td>&nbsp;</td></tr>
</table>**
<table>
<tr><td collspan='3'>Benchmark</td></tr>
<tr><td>Fresh Diagnose</td><td>&nbsp;</td><td>&nbsp;</td>
</table>
4

2 回答 2

0

首先,您的代码非常“混乱”。我想您需要更多代码来添加星号之间的部分,但我认为您应该使用更简洁的方法。

我想你正在使用 mysql,它支持GROUP_CONCAT() -function。在这种情况下使用它是明智的。

进行查询:

SELECT name, GROUP_CONCAT( title SEPERATOR '|') as titles FROM your_database GROUP BY name

每个类别的结果现在在一行中。

//Amount of rows
$maxcols = 3;

while( $row = $result->fetch_assoc() ) {
  //The seperator needs to be something that isn't in the values it seperates
  //This creates an array with the titles for this category
  $titles = explode( '|', $row['titles'] );

  echo '
  <table>
    <tr>
      <td colspan="' .$maxcols. '">' .$row['name']. '</td>
    </tr>';

  //$offset + $i is the position in the array of titles
  $offset = 0;

  //This loop ensures each row is properly opened and closed
  while( $offset < count( $titles ) ) {

    echo '<tr>';
    //This will ensure each row has $maxcols td's in it
    for( $i = 0; $i < $maxcols; $i++ ) {
      if( isset( $titles[ $offset + $i ] ) ) {
        echo '<td>' .$titles[ $offset + $i ]. '</td>';
      } else {
        echo '<td>&nbsp;</td>';
      }
    }
    $offset += $maxcols;
    echo '</tr>';
  }

  echo '</table>';
}
于 2013-06-30T16:21:44.257 回答
0

非常感谢你,Sumurai8!你的想法很有效。这是我的php代码:

<?php
include_once('include/db.inc.php');

$sql="SELECT m.name, GROUP_CONCAT(s.title order by s.title SEPARATOR '|' ) as titles FROM menu m, software s where m.id=s.category
GROUP BY m.name
order by m.name";
$result = $mysqli->query($sql);
$cat="";

$maxcols = 3;
//$i = 0;

echo "
<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'>
<html>
    <head>
    <title>content</title>
         <meta content='text/html; charset=utf-8' http-equiv='content-type'>
         <meta content='Software Details' name='description'>
<link href='styles/fontstyle.css' rel='stylesheet' type='text/css'>  
<link href='styles/style.css' rel='stylesheet' type='text/css'>  
</head>

<body class='body'>";


while( $row = $result->fetch_assoc() ) {
  //The seperator needs to be something that isn't in the values it seperates
  //This creates an array with the titles for this category
  $titles = explode( '|', $row['titles'] );

  echo "
<table>
<tr><td colspan='" .$maxcols. "'>" .$row['name']. "</td></tr> \n";

  //$offset + $i is the position in the array of titles
  $offset = 0;

  //This loop ensures each row is properly opened and closed
  while( $offset < count( $titles ) ) {

    echo "<tr>";
    //This will ensure each row has $maxcols td's in it
    for( $i = 0; $i < $maxcols; $i++ ) {
      if( isset( $titles[ $offset + $i ] ) ) {
        echo "<td>" .$titles[ $offset + $i ]. "</td>";
      } else {
        echo "<td>&nbsp;</td>";
      }
    }
    $offset += $maxcols;
    echo "</tr> \n";
  }

  echo "</table><br> \n";
}

这是输出,正是我想要的方式:

<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'>
<html>
    <head>
    <title>content</title>
         <meta content='text/html; charset=utf-8' http-equiv='content-type'>
         <meta content='Software Details' name='description'>
<link href='styles/fontstyle.css' rel='stylesheet' type='text/css'>  
<link href='styles/style.css' rel='stylesheet' type='text/css'>  
</head>

<body class='body'>
<table>
<tr><td colspan='3'>Archivers</td></tr> 
<tr><td>7-Zip</td><td>IZArc</td><td>dfssdfsdf sdfsdf</td></tr> 
<tr><td>fgdgdfgd</td><td>sdfsdfsdfsdf dsfsdf</td><td>&nbsp;</td></tr> 
</table><br> 

<table>
<tr><td colspan='3'>Benchmark</td></tr> 
<tr><td>Fresh Diagnose</td><td>&nbsp;</td><td>&nbsp;</td></tr> 
</table><br> 



</body>
</html>
于 2013-07-01T13:24:43.187 回答