Tutorial on PHP redirect to be redirected to another page or web site.
For this tutorial lets suppose you have moved your web site to another domain and want your visitors to be redirected to your new domain you can use PHP for this purpose.
Here is the code to redirect a user:
[php]<?php
header ('Location: ‘http://www.daveismyname.co.uk’);
?>[/php]
Here’s a breakdown of the code.
The<?php tells the browser to expect to receive php.
header('Location:‘http://www.daveismyname.co.uk’); tells the browser to redirect to the address given in the code and ?> tells the browser to finish expecting PHP.