Forum Moderators: open
Here is the php script:
<?php
switch(!isset($_GET["link"]))
{
case '':
echo '<a href="index.php?link=google" class="menu">google</a><META http-equiv="refresh" content="1; URL=http://google.com/"; target="_blank">';
break;
case 'fff':
echo '<a href="index.php?link=google" class="menu">google</a>';
break;
case 'google':
echo '<a href="index.php?link=google" class="menu">google</a>';
The thing I want is to hide the url like google.com into my site: www.mysite.com/index.php?link=google.
When you click it to go to google.com.
}
?>