23 Like(s)
|
How do I redirect with php?
How to make a redirect in PHP?
How can I make a page redirect using php.
PHP Redirect Function When you want to redirect web page you should make a function in php for redirect page it will be very helpful for all your page i am giving you a very simple php code of php redirect function use it whenever you want to call this function use this code.
<?php
//call this function
redirect_to("yourfile.php");
?>
<?php
function redirect_to($new_location) {
header("Location: " . $new_location);
exit;
}
?>
Categories: PHP Tricks
Leave a comment