How to redirect a page in php?
Redirect a page to another one
how to redirect to another page in php after submit | how to redirect from one page to another in php | how to redirect to another page in php w3schools | php redirect to page after 5 seconds | php redirect to another page with parameters | redirect in php with data | php redirect without header
how to redirect to another page in php after submit | how to redirect from one page to another in php | how to redirect to another page in php w3schools | php redirect to page after 5 seconds | php redirect to another page with parameters | redirect in php with data | php redirect without header
how to redirect to another page in php after submit | how to redirect from one page to another in php | how to redirect to another page in php w3schools | php redirect to page after 5 seconds | php redirect to another page with parameters | redirect in php with data | php redirect without header
how to redirect to another page in php after submit | how to redirect from one page to another in php | how to redirect to another page in php w3schools | php redirect to page after 5 seconds | php redirect to another page with parameters | redirect in php with data | php redirect without header
how to redirect to another page in php after submit | how to redirect from one page to another in php | how to redirect to another page in php w3schools | php redirect to page after 5 seconds | php redirect to another page with parameters | redirect in php with data | php redirect without header
how to redirect to another page in php after submit | how to redirect from one page to another in php | how to redirect to another page in php w3schools | php redirect to page after 5 seconds | php redirect to another page with parameters | redirect in php with data | php redirect without header how to redirect to another page in php after submit how to redirect from one page to another in php how to redirect to another page in php w3schools php redirect to page after 5 seconds php redirect to another page with parameters redirect in php with data php redirect without header
Share
Using the header function.
<?php
/* Redirect browser */
header("Location: http://www.domain.com/user.php");
exit(); ?>
Using Javascript:
<?php echo '<script type="text/javascript">
window.location.href = "http://www.google.com/"
</script>'; ?>