I want to redirect web page using PHP. Currently I'm using this code to redirect:
header("Location: http://www.yourwebsite.com/user.php"); /* Redirect browser */
exit();
Do you have any alternative to redirect web page using PHP?
I want to redirect web page using PHP. Currently I'm using this code to redirect:
header("Location: http://www.yourwebsite.com/user.php"); /* Redirect browser */
exit();
Do you have any alternative to redirect web page using PHP?
you can redirect using the following script. But this is not a good way in my opinion. May be you can use any other framework for that.
<?php
echo "<script> location.href='yourwebsite.com/user.php';; </script>";
exit();
?>