有人可以帮助我,如何编写逻辑来将数据从我的数据库打印到 table?table border=1trthFirstname/ththLastname/ththPoints/th/trtr?phpglobal $wpdb;$result = $wpdb-get_results ( SELECT...
有人可以帮助我,如何编写逻辑来将数据从我的数据库打印到< table>?
<table border="1">
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Points</th>
</tr>
<tr>
<?php
global $wpdb;
$result = $wpdb->get_results ( "SELECT * FROM myTable" );
foreach ( $result as $print ) {
echo '<td>' $print->firstname.'</td>';
}
?>
</tr>
</table>
我知道这是如此基本,但我真的很难让这项工作.
解决方法:
试试这个:
<table border="1">
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Points</th>
</tr>
<?php
global $wpdb;
$result = $wpdb->get_results ( "SELECT * FROM myTable" );
foreach ( $result as $print ) {
?>
<tr>
<td><?php echo $print->firstname;?></td>
</tr>
<?php }
?>
沃梦达教程
本文标题为:php – 使用wordpress $wpdb显示数据库内部的数据
猜你喜欢
- dedecms织梦列表页标题增加页码的方法 2022-07-22
- PbootCMS伪静态配置教程以及各web容器配置规则 2023-07-08
- PbootCMS网站标题描述等标签限制字数的办法 2023-07-08
- 织梦dedecms点击数统计控制(刷新页面不新增点击数) 2022-07-20
- 织梦DedeCMS如何实现文章列表隔行换色变样式 2023-07-08
- 织梦采集标题不完整的解决方法,修改标题长度 2022-07-14
- pbootcms去除ueditor编辑器图片自动添加的title和alt属性 2023-07-08
- 织梦dedecms最全的清除文档的sql语句 2022-06-24
- pbootcms文章插入图片不固定宽高的办法 2023-07-08
- 怎么安装使用PbootCMS网站模板 2023-07-08