在wordpress页面的数据库中以表格格式显示数据

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在wordpress页面的数据库中以表格格式显示数据相关的知识,希望对你有一定的参考价值。

我整天看着整个互联网,并没有找到以表格格式提取数据。我有我的短代码,一切准备就绪,我有这个代码,它是显示数据但不是很好的格式,你可以在屏幕截图中看到我想在WordPress页面中这样的数据。

<?php
?>


<table border="1">
<tr>
<th>Char Item</th>
<th>Item Id</th>
<th>Item Description</th>
</tr>
<?php
  global $wpdb;
  $result = $wpdb->get_results ( "SELECT * FROM wp_orderlist" );
  foreach ( $result as $print )   {
      echo '<td>'. $print->char_item.'</td>';
      echo '<td>'. $print->item_id.'</td>';
      echo '<td>'. $print->Item_Description.'</td>'; 

      }
  ?>            
</table>
答案

你忘记添加tr标签了。试试这个:

echo '<tr>';
foreach ( $result as $print )   {
    echo '<td>'. $print->char_item.'</td>';
    echo '<td>'. $print->item_id.'</td>';
    echo '<td>'. $print->Item_Description.'</td>'; 
}
echo '</tr>';

以上是关于在wordpress页面的数据库中以表格格式显示数据的主要内容,如果未能解决你的问题,请参考以下文章