在块中获取数据库输出的正确方法

时间:2018-03-23 13:57:57

标签: php html css twitter-bootstrap href

我想用php(pdo)创建一个论坛现在我可以从数据库中获取数据,就像你可以看到下面图片中的2项(de 2 dot with text)现在我想要<H5> tagg是点上的东西,但我不知道如何做到这一点。

This is what I have right now with this code

我想要什么

<div class="col-md-6">
  <div class="well dash-box">
      <h2><span class="glyphicon glyphicon-stats" aria-hidden="true"></span> Inspiratie</h2>
       <h5>Tips en inspiratie om jou en je business een boost te geven, dit kan van groot belang zijn.</h5>
         </div>
        </div>
       <div class="col-md-6">
       <div class="well dash-box">
          <h2><span class="glyphicon glyphicon-list-alt" aria-hidden="true"></span> 12</h2>
           <h5><a href="https://google.nl"> hoi</a></h5>
          <?php
             $toppics = $app->get_topics();
             $i = 4;
             foreach ($toppics as $topic) {
             echo '<li><a href="#section' . $i++ . '">' . $topic['onderwerp'] . '</a></li>';
             }
          ?>
  </div>
</div>

This is how the database looks like从数据库中取出“onderwerp”列,我希望这些列为<H5>标记

0 个答案:

没有答案