データベースから新しく挿入されたデータを表示したいと思います。別の質問から以下のコードを見つけましたが、それは私が望むことを行いますが、クリックしたときにのみデータを表示します。では、データを 5 秒ごとに自動ロードする方法を教えてもらえますか?
<script type="text/javascript">
$(document).ready(function() {
$("#display").click(function() {
$.ajax({ //create an ajax request to load_page.php
type: "GET",
url: "second.php",
dataType: "html", //expect html to be returned
success: function(response){
$("#responsecontainer").html(response);
//alert(response);
}
});
});
});
</script>
<input type="button" id="display" value="Display All Data" />
<div id="responsecontainer" align="center">