|
<?
// ##################################################
// use this function to redirect to url you want
// but dont often
// use it if header function is can't make solution
// your redirect ....
//
// happy scripting ...
// #################################################
function UrlRedirect($url) {
$str = "
<html>
<script Language="JavaScript">
window.location.href = "$url";
</script>
</html>
";
print $str;
}
?>
|
|
|
Usage Example
|
<?
// you automatic redirect to zend.com
// after print "just test" :(
print "just test"; UrlRedirect("www.zend.com");
?>
|
|
|
Rate This Script
|
|