I want to create a little chat with PHP. Everything works fine but the chat doesn't reload automatically. Is there a function that would solve my problem?
My PHP-Code:
<?php
$newmsg= mysqli_query($db_chat, "SELECT msg, username, time FROM messages");
while($row = mysqli_fetch_object($newmsg))
{
echo '<div class="messagesinchat">';
if ($row->username == "admin") {
echo '<div class="ownmsg">';
echo $row->username. ":  " . $row->msg;
echo "<br />";
echo '</div>';
}
else{
echo $row->username. ": " . $row->msg;
echo "<br />";
}
echo '</div>';
}
?>