I know i can use javascript to refresh the page after a certain amount of time;
<html>
<head>
<script type="text/JavaScript">
<!--
function timedRefresh(timeoutPeriod) {
setTimeout("location.reload(true);",timeoutPeriod);
}
// -->
</script>
</head>
<body onload="JavaScript:timedRefresh(5000);">
</body>
</html>
Is it possible to reload the page once a new field has been added/updated in the database to display data in real-time instead of "F5"