Thanks, but I'm trying to avoid using JavaScript a) because I know little about it and b) because I don't want to rely on something that the user can disable.
I'm calling the following common head information in all my scripts:
function do_html_header($location)
{
// print a HTML header
?>
<META NAME="Pragma" CONTENT="no_cache">
<META NAME="Cache-Content" CONTENT="no_cache">
<META HTTP-EQUIV="Pragma" CONTENT="no_cache">
<META HTTP-EQUIV="Cache-Content" CONTENT="no_cache">
<head>
<link rel="stylesheet" type="text/css" href="/DDCweb/DPE.css" />
<title>NPE Design Data Control</title>
<? header("location: /DDCWeb/footer.php"); ?>
</head>
<body>
<p><?echo date ("h, i, s"); echo $location?></p>
<?
}
What I need is some kind of php or html page refresher that will allow me to set a target frame.