not sure if this is what you want but i just knocked it together...
put the following code in a file called redirect.php
<?php
if ( '' == $url )
{
$url="http://www.appartment.com";
}
?>
<html>
<head>
<title> =You are now visiting an external site</title>
</head>
<frameset rows="175,*">
<frame src="header.html" name="header" frameborder="0" noresize scrolling="no">
<frame src="<?php echo($url); ?>" name="detail">
</frameset>
</html>
now create the header page using the following html and call it header.html and put it in the same folder as redirect.php
<html>
<head>
<title></title>
</head>
<body>
<table align="center" width="100%" cellpadding="0">
<tr valign="top">
<td><p align="left"><img src="http://www.zeifang.com/logos/appartment.gif"></p></td>
<td><p align="right">This is some text about my website<br />
This is some text about my website<br />
This is some text about my website<br />
This is some text about my website<br />
This is some text about my website<br />
This is some text about my website<br />
</p></td>
</tr>
</table>
</body>
</html>
you can then link to redirect.php and get it to load any page you want by using the following code
http://www.yourdomain.com/redirect.php?url=http://www.domaintoredirectto.com
i have made an example page
try this link
http://www.hiphopdvds.com/redirect.p...ww.dnforum.com
if this is useful say so and i'll explain how to change the page title and set a default site in case you forget to add the ?url=www.domain.com






Reply With Quote



Bookmarks