PHP Pdo:选择记录数据库

时间:2018-03-26 07:17:39

标签: php mysql

我的网站出现了这个问题(在php(pdo)中建立)。如果我想要数据库中的一件事,我得到所有这些而不仅仅是1.正如你所看到的那样,2“onderwerp”正在展示,但我只想要其中一个,例如第一个。

这个代码是:

<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>

现在我希望它显示1并非全部,但我不完成它

带点的2件事情在数据库之外:

点后面的东西来自的数据库:

我的功能:

public function get_topics(){
        $getTopic = $this->database->query("SELECT * FROM topics ORDER BY id DESC");
        $this->database->bind(":ledenpagina_id", $_SESSION['ledenpagina_id']);
        $topics = $this->database->resultset();

        return $topics;

}

所以我想要的是:我想能够从数据库中选择一个,但限制不是我想要的。我需要能够在4e之后选择第二个记录

0 个答案:

没有答案