ViaThinkSoft CodeLib
This article is in:
CodeLib → Programming aids → PHP
/* Umleiten eines Besuchers */
function redirect($url, $permanent=false) {
if (!headers_sent()) {
if ($permanent) header("HTTP/1.1 301 Moved Permanently");
header('Location: '.$url);
die();
} else {
echo '<script language="JavaScript">
document.location="'.$url.'";
</script>';
die();
}
}
Daniel Marschall
ViaThinkSoft Co-Founder
ViaThinkSoft Co-Founder