Как вы получаете все строки с pdo? - PullRequest
1 голос
/ 14 марта 2019

Я делаю блог и хочу получить все строки, используя оператор pdo, но независимо от того, что я делаю, возвращается только одна строка, хотя в моей базе данных есть две строки.

Вот пример кода, где я подключаюсь:

<?php
try{
$link=new PDO('mysql:host=127.0.0.1;dbname=blog1','root','');
$link->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);




 } catch(PDOException $e){
 echo $e->getMessage();
   die();
  }
?>

Затем я пытаюсь получить все строки

<?php
   require 'Escape.php';
  $posts_query=$link->query('SELECT * FROM posts');
  $posts_query->execute();
/* variable that holds a with the database link and query in it then fetches 
  all the data related to the query into and assoc array */
$result=$posts_query->fetchAll();

 //counting all rows
 $count=$posts_query->rowCount();
  if($count>0){



 foreach($result as $r){
      $id= $r['id'];
    $title= $r['title'] ;
   $content=$r['content'];
       $date= $r['date'];

//admin buttons
 $admin="";
//keeping title safe
    $Title=htmlentities($title);
    //keeping output safe
    $output=htmlentities($content);
 // styling the posts to be echoed with secure variables
$posts= "<div><h2><a href='view_post.php?pid=$id' class='names'>$Title</a> 
  </h2><h3>$date</h3><p>$output</p>$admin</div>";
  escape($posts);
   }
 echo"<div id=posts>$posts</div>";
  } else{
echo 'There are no posts to display.';
  }

    ?>

Ответы [ 2 ]

1 голос
/ 14 марта 2019

Ваше значение $posts сбрасывается в последнюю строку при цикле, либо вы добавляете значение каждого сообщения, используя оператор concat .:

if($count>0){
 $posts = "";
 foreach($result as $r){
    // Define your variable
    $posts .= "<div><h2><a href='view_post.php?pid=$id' class='names'>$title</a></h2><h3>$date</h3><p>$output</p>$admin</div>";
    escape($posts);
   }
  echo"<div id=posts>$posts</div>";
} else { ... }

Или печать каждого сообщения во время цикла:

if($count>0){
 $posts = "";
 echo "<div id='posts'>";
 foreach($result as $r){
    // Define your variable
    $posts = "<div><h2><a href='view_post.php?pid=$id' class='names'>$title</a></h2><h3>$date</h3><p>$output</p>$admin</div>";
    escape($posts);
    echo $posts;
   }
  echo"</div>";
} else { ... }
0 голосов
/ 14 марта 2019

Похоже, что вы переопределяете посты на каждой итерации, попробуйте добавить значения в массив и развернуть их, когда вы хотите echo их вывести.

  require 'Escape.php';
  $posts_query=$link->query('SELECT * FROM posts');
  $posts_query->execute();

  $result=$posts_query->fetchAll();

  $count=$posts_query->rowCount();
  if($count>0){
    $posts=[];
    foreach($result as $r){
      $id= $r['id'];
      $title= $r['title'] ;
      $content=$r['content'];
      $date= $r['date'];
      $admin="";
      $Title=htmlentities($title);
      $output=htmlentities($content);
      // Add the HTML to the $posts array, also taking advantage of NOWDOCS
      $posts[]= <<< HTML
<div>
  <h2>
    <a href='view_post.php?pid={$id}' class='names'>{$Title}</a> 
  </h2>
  <h3>{$date}</h3>
  <p>{$output}</p>
  {$admin}
</div>
HTML;
      escape($posts);
   }
   echo"<div id='posts'>" . implode('', $posts) . "</div>";
 } else {
   echo 'There are no posts to display.';
}

Вот ссылка на PHP HEREDOCS.

...