But that would cause the page to keep refreshing its self. If you wanted to do it just once then youll need some sort of latch ie
<!---Page.php--!>
if ($HTTP_GET_VARS["latch"] == 0) {
header("Location: page.php?latch=1");
}
Call page.php with page.php?latch=0 first and the page will refresh.
Hope this helps
Mark.