在HTML表格中打印多个结果集

时间:2013-08-06 10:09:53

标签: php mysql wordpress foreach

我试图从2个sql语句中提取两个结果并打印到HTML表中。 但是有些结果是不正确的。请帮我解决。

下面是代码第二个结果是打印不正确的结果 - 重复的结果。

<?php
global $wpdb;
$result1=$wpdb->get_results("select post_name,id,cat from wp_posts where post_name like '%java%');
$result2=$wpdb->get_results("select post_name,id,cat from wp_posts where post_name like '%oracle%');
?>
<table id="table_id">
    <thead>
        <tr>
            <th>JAVA</th>
            <th>ORACLE</th>
        </tr>
    </thead>
<tbody>
<?php foreach($result1 as $rows1) { ?>
<?php foreach($result2 as $rows2) { ?>
            <tr>
              <td> <?php echo $rows1->post_name ; ?> </td> 
              <td> <?php echo $rows2->post_name ; ?> </td>            
</tr>  
  <?php
    }   
?>
<?php
    }   
?>

2 个答案:

答案 0 :(得分:2)

      global $wpdb;
      $result1=$wpdb->get_results("SELECT post_name,id,cat FROM wp_posts WHERE post_name LIKE '%java%'");

      $result2=$wpdb->get_results("SELECT post_name,id,cat FROM wp_posts WHERE post_name LIKE '%oracle%'");

在获取对象后,我们将所需的值放在两个数组中,以便我们可以创建一个多维数组。

      $result_one = array();
      $result_two = array();

    //putting values in array

      foreach ($result1 as $result) {
        $result_one[] = $result->post_name;
      }

      foreach ($result2 as $result) {
        $result_two[] = $result->post_name;
      }

   //Creating a multi-dimensional array so that we can print two columns easily

      $results = array(
        $result_one,
        $result_two,
        );

   //Initialising the variables to be used as counters and array indexes.

   $i = 0;  $j = 0; $k = 0; $p = 1;

    //getting length of array

    $array_length = count($result_one);

现在启动两个循环以从创建的多维数组中获取数据。 在这种情况下:要正确创建表,我们需要按以下顺序排列值:

  

$ results [0] [0],$ results [1] [0],$ results [0] [1],$ results [1] [1],   $ results [0] [2],$ results [1] [2]等等。

所以我们必须相应地创建循环。

    while ($i < 2) {
      while ($j <  $array_length) {

     if (fmod($p,2)) echo '<tr>'; // So that <tr> will be printed only after two <td>

       echo "<td>". $results[$i][$j]. "</td>";

       if($i == 0) { $i = 1; } else { $i =0; }  // Toggling values of $i from 0 to 1.
        $k++;
       if(fmod($k, 2) == 0){ $j ++; }  // Increasing $j after 2 steps.

       $p++;

       if (fmod($p,2)) echo '</tr>'; 

       }

    $i ++;

  }

如果您需要三列:

重复第一步和第二步,以便您可以创建如下数组:

$results = array(
            $result_one,
            $result_two,
            $result_three,
            );      

首先将循环更改为

 while ($i < 3)

并将以下声明更改为:

 if (fmod($p,3)) echo '<tr>'; 
 if($i == 0) { $i = 1; } elseif ($i == 1) {$i=2} else { $i = 0; } 
 if(fmod($k, 3) == 0){ $j ++; }
 if (fmod($p,3)) echo '</tr>';

我希望您现在能够更好地理解,并且可以自己进行必要的更改。

这看起来很复杂。但这应该有效。请试试。 任何人都可以随意编辑while循环以使其更简单。

答案 1 :(得分:0)

我错过了第3个结果数组。请纠正我。

      $results = array(
        $result_one,
        $result_two,
        $result_three,
        );

   $i = 0;  $j = 0; $m = 0; $k = 0; $p = 1;

    $array_length = count($result_one);
?>
<table id="table_id">
    <thead>
        <tr>
            <th>ORACLE</th>
            <th>JAVA</th>
            <th>SAP</th>
        </tr> 
    </thead>
<tbody>
<?php    while ($i < 3) {
      while ($j <  $array_length) {
     if (fmod($p,3)) echo '<tr>'; 

       echo "<td>" . $results[$i][$j] . "</td>";

       if($i == 0) { $i = 1; } elseif ($i == 1) {$i=2} else { $i = 0; } 
        $k++;
       if(fmod($k, 3) == 0){ $j ++; }

       $p++;

       if (fmod($p,3)) echo '</tr>'; 

}
    $i ++;

  }
  ?>