使用 PHP 和 codeigniter 显示带有 foreach 函数的固定表

Posted

技术标签:

【中文标题】使用 PHP 和 codeigniter 显示带有 foreach 函数的固定表【英文标题】:Show fixed table with foreach function using PHP with codeigniter 【发布时间】:2019-04-22 14:11:55 【问题描述】:

我正在使用 CodeIgniter,我有表 which have fixed data on the left side,我必须使用 php 用数据库中的数据填充 1-12:

谁能帮助我了解如何从数据库中调用数据?

【问题讨论】:

我认为您的问题是关于从数据库中获取数据。请问您的数据库结构。 【参考方案1】:

这可能是解决方案:

CSS:

<style type="text/css">
.tg  border-collapse:collapse;border-spacing:0;
.tg tdfont-family:Arial, sans-serif;font-size:14px;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;border-color:black;
.tg thfont-family:Arial, sans-serif;font-size:14px;font-weight:normal;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;border-color:black;
.tg .tg-xldjborder-color:inherit;text-align:left
.tg .tg-0pkyborder-color:inherit;text-align:left;vertical-align:top
</style>

HTML 和 PHP:

<table class="tg">
    <tr>
        <th class="tg-xldj">Name</th>
        <th class="tg-0pky">Class</th>
        <th class="tg-0pky">Subject</th>
        <th class="tg-xldj">Date</th>
        <th class="tg-xldj">Score</th>
    </tr>
    <tr>
        <td class="tg-0pky">N1</td>
        <?php for($i=1;$i<=4;$i++)  ?>
            <td class="tg-0pky"><?=$i?></td>
        <?php  ?>
    </tr>
    <tr>
        <td class="tg-xldj">N2</td>
        <?php for($i=5;$i<=8;$i++)  ?>
            <td class="tg-0pky"><?=$i?></td>
        <?php  ?>
    </tr>
    <tr>
        <td class="tg-0pky">N3</td>
        <?php for($i=9;$i<=12;$i++)  ?>
            <td class="tg-0pky"><?=$i?></td>
        <?php  ?>
    </tr>
</table>

【讨论】:

以上是关于使用 PHP 和 codeigniter 显示带有 foreach 函数的固定表的主要内容,如果未能解决你的问题,请参考以下文章

在 PHP,Codeigniter 中提交带有空字段的表单时出现一些错误

Codeigniter 4 不适用于带有 PHP 8.0 的 xampp

Codeigniter 显示空白页而不是错误消息

带有 Wiredesignz HMVC 路由的 CodeIgniter

CodeIgniter 在带有 ajax 回调的表单字段旁边单独显示错误

PHP:在视图中显示会话变量:CodeIgniter