I know asp better, but php... I found some solutions on the php redirect, but i do not know which one is the better. Can you give me some advices?
http://www.webmaster-talk.com as an example
------------- Header---------------
<?php
$url = http://www.webmaster-talk.com;
if (isset($url))
{
Header("Location: $url");
}
?>
------------java script-------------------
<? php
$url=http://www.webmaster-talk.com;
echo "<SCRIPT LANGUAGE=\"java script\">location.href='$url'</SCRIPT>";
?>
|