It works and all, I can load up the page but I wanted to use the header so that the new page loads without renaming the URL, for example if I do
<?php
header("Location: http://www.site.com/page.php"); exit;
?>
as foo.php, and open it, I get the page.php opened, but the URL reads www.site.com/foo.php, if I use the method you outlined, I get the same as
<a href="page.php">pic stuff</a> and the url reads www.site.com/page.php.
Is there a way around this?
Thanks