well im not going to show you everything! you have to think for yourself sometimes you know 🙂
anyway, this should get you started.again i have no idea if this is even possible to make it work properly becuase of internal browser caching. but here goes:
page.php:
<?php
set_time_limit(0);
ob_start();
include "welcome.php";
ob_flush();
//lotsa code here
?>
<script>
document.getElemenById('welcome').style = "visibility: none;";
</script>
<?php
echo $output;
ob_end_flush();
?>
welcome.php:
<div id="welcome">
<!-- WELCOME PAGE HERE -->
</div>
hth
moon