Well that won't work because I don't actually specify the url in that area of the code.
Here is how I have it:
<?
if ($action == "goto") {
?>
<?php
if ($url == "$???") {
header("Location: $???");
}
?>
<?
if ($page == "home") {
?>
<?PHP
require ('/home/~username/domain.com/php-header.php3');
?>
<a href="index.php3?action=goto&url=http://www.somesite.com">somesite.com</a>
<?PHP
require ('/home/~username/domain.com/php-footer.php3');
?>
<?
}
<?
-snip-
How can I get the script to redirect the url in the html to the site?