I add external links in a page manually, I want that whenever any 1 clicks any links,a new page will open and it should have exact external site link.
can any1 help???????????
can any1 help???????????
<a href="http://external-link.com" [B][COLOR=red]target="_blank"[/COLOR][/B]>whatever</a>
<?php
$link = $_GET["link"];
echo '<a href=' . $link . '>Click Here</a>';
?>
Comment