PHP Tips (Redirecting to a Page)
Oct 17, 2006 Uncategorized
To Redirect an user to a new Page
use the follwoing script
<?php
header( ‘Location: http://www.yourwebsite.com/redirect_page.html’ ) ;
?>
But make sure that no HTTP headers have been sent before this code is beign executed
(i.e. this should come before the HTML tag in the page)
Tags: Krishna


October 18th, 2006 at 4:57 am
Onnume pirila.