如何回应我们的换行符

时间:2019-06-07 11:03:08

标签: php

enter image description here

我正在尝试通过使用<br></br>来消除换行符,但似乎无法显示换行符。

我尝试使用<br></br>命令

<?php
$sql = "SELECT * FROM review;";

$stmt = mysqli_stmt_init($conn);
//Prepare the prepared statement
if (!mysqli_stmt_prepare($stmt, $sql)) {

} else {
     //Bind parameters to the placeholder
     //Run parameters inside database
     mysqli_stmt_execute($stmt);
     $result2 = mysqli_stmt_get_result($stmt);
     $resultCheck2 = mysqli_num_rows($result2);

     while ($row2 = mysqli_fetch_assoc($result2)) {

      echo '<div class="review_post">';

      echo ' <i class="fas fa-quote-left"></i>'.htmlspecialchars($row2['review']).' '.htmlspecialchars($row2['user_uid']).' '.htmlspecialchars($row2['datesubmitted']).'<i class="fas fa-quote-right"></i>';
      echo '<br></br>';
       echo '<br></br>';
        echo '<br></br>';
      echo '</div>';

}

我希望所有评论都显示在单独的行中,但都被压缩了。

这是CSS:

div.review_post {
  position: absolute;
  font-size: 3em;
  left: 8em;
  top: 130em;
  line-height: 5em;
  margin-bottom: 20em;
  white-space: nowrap;
}

0 个答案:

没有答案