Thursday, December 5, 2013

Redirect to page with php & javascript

/////// Redirect to  any page

function redirectToPage($page)
{

 if($page!="")
 {
    echo "<script>window.location='".$page."';</script>";
 }

}


//////////////////////// example//////////////////


redirectToPage('home.php');

No comments:

Post a Comment