Hi
here's a few lines of code I've got in a page that has a php database query in it and I want it to arrive at the anchor link I have called "bottom each time"
Code:
<script language="javascript">
function loadPage()
{
location.href = "http://www.mysite.com/help/chat/chat_window.php?theID=<?php echo $id; ?>";
}
</script>
</head>
<body bgcolor="#CCCCCC" onLoad="setTimeout('loadPage()',20000)">
The page has enough data to produce scrollbars.
Is there something I'm doing wrong?