You could escape php and redirect using javascript, when it drops into the JavaScript it'll just jump to the destination page
You can still pass any vars along the way if you want to
?>
<SCRIPT LANGUAGE="JavaScript">
location.href='going_to_this_page.php?var=<?=$var?>';
</SCRIPT>
<?
Hope that helps