<?php
//how to Redirect any page with php
function reDirect2Url($pageUrl) // Write the function code Here
{
if ($pageUrl!="")
{
header("location: $pageUrl");
}
}
reDirect2Url("yourpageurlhere"); // called the function
?>
//how to Redirect any page with php
function reDirect2Url($pageUrl) // Write the function code Here
{
if ($pageUrl!="")
{
header("location: $pageUrl");
}
}
reDirect2Url("yourpageurlhere"); // called the function
?>
No comments :
Post a Comment