I want to display Database in HTML, but it does not update constantly when I change the data in the database, and i have to refreshing many times. Do you have any advice to optimize this ?
<div class="container">
<div class="row">
<?php
while($result = $statement->fetch(PDO::FETCH_ASSOC))
{
echo $result['temperature'];
}
?>
</div>
</div>