PDA

View Full Version : Basic Redirection



kyle
28th July 2006, 12:00 AM
Hi,

Here is a basic php redirection script.

Only change the value between '' next to $page_url.

Change this to what ever you want the script to redirect to, for example

http://www.serv.co.za/hosting.php
hosting.php



<?php

$page_url = 'home.html';

header ("Location: $page_url");
exit;

?>

yveslebeau
18th October 2006, 03:02 PM
Or you can do this as well:



<?php

$page_url = 'home.html';

header ("Location:".$page_url);
exit;

?>


Notice the dot (.) that adds both strings. Remember also not to do any echo on that page or you can get errors. It's pretty cool for login pages and login scripts :D