I have following code, I try to style output with CSS, but I have small problem, my code show all database entries, which is OK, but when I remove comment from WHILE loop, and comment echo, its showing only first row of entries from database.how can I do same thing and show multiple results from database by use variables in While Loop?:
<?php
error_reporting(0);
require 'connect.php';
$search = $_POST['search'];
//$checkout = $_POST['checkout'];
if (!$conn) {
    die("Connection failed: " . mysqli_connect_error());
}
$sql = "SELECT * FROM area where destination='{$search}'";
$result = mysqli_query($conn, $sql);
if($count = $result->num_rows) {
    echo '<p>', $count, '</p><br><br>';
    // output data of each row
    while($row = mysqli_fetch_assoc($result)) {
        
        echo $row['destination'],' ',$row['place'], $row['tosee'], '<br>';
         
    /$destination =$row["destination"]; 
    //$place =$row["place"]; 
    /$destination =$row["destination"]; 
    //$place =$row["place"]; 
    }
} else {
    echo "0 results";
}
mysqli_close($conn);
?>
and inside my HTML file:
location:  <?php echo $destination; ?>
places:  <?php echo $place ; ?>
views:  <?php echo $tosee; ?>
 
     
     
     
    
Places: {$row["place"]}
Views: {$row["tosee"]}";` – Steven Apr 10 '21 at 19:14