How to redirect user to another URL in PHP
Answer:
Assume you have a redirect.php, and want to redirect user to Google, use the following codes:
<?php
header("Location: http://www.google.com");
How to redirect user to another URL in PHP
Answer:
Assume you have a redirect.php, and want to redirect user to Google, use the following codes:
<?php
header("Location: http://www.google.com");
Post a Comment