21 Like(s)
|
If header redirect is not working you can use javascript just make a simple php function for redirect page and put simple javascript.
<?php
function redirect_to($new_location) {
echo("<script>location.href = .'{$new_location}'.;</script>");
}
?>
<p>now you have to call this function just follow this code</p>
<?php
redirect_to("yourfilename.php");
?>
Categories: PHP Tricks
Leave a comment