on my links page say if i hover a link for PHPBUILDER in the status bar the link will say http://www.phpbuilder.com but how can i make it be like...
http://www.mywebsite.com/redirect.php?url=1
or as ive seen before... http://www.mywebsite.com/go?id=1
or something along those lines and also have it as _blank
?????😕
thanx
what do you want ? make a link to another site opening in a new window ?
<A HREF="http://www.example.com/" TARGET="_blank">Go To Example.com</A>
if you need a redirect system, check Google voor php redirect system
Originally posted by cyclops what do you want ? make a link to another site opening in a new window ? <A HREF="http://www.example.com/" TARGET="_blank">Go To Example.com</A> if you need a redirect system, check Google voor php redirect system [/B]
Originally posted by cyclops what do you want ? make a link to another site opening in a new window ?
if you need a redirect system, check Google voor php redirect system [/B]
i said exactly what i want in the first post.
how does that html code give me http://www.mywebsite.com/redirect.php?url=1 ????
thanx for the effort tho
redirect.php
<?php ob_start(); switch ($_GET['url']) { case '1': header('Location: http://www.something.com'); break; case '2': header('Location: http://www.something.com'); break; case '3': header('Location: http://www.something.com'); break; default: header('Location: http://www.something.com'); } ob_end_flush(); ?>
Access link
<a href="http://www.mywebsite.com/redirect.php?url=1" target="_blank">linkname</a>