How often do you want to refresh the data in the iframe? In any case you should be able to do something like this:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script type="text/javascript">
function update(){
setInterval("dataFrame.location.replace('data.htm')",5000)
}
</script>
</head>
<body>
<iframe onload="update();" name="dataFrame" src="data.htm" width="300" height="250" scrolling="auto" frameborder="1"></iframe>
</body>
</html>
5000 is how often (in milliseconds) that the iframe named 'dataFrame' will update with the page 'data.htm' which could be the page that gets its data from the database.
Bookmarks