HTTP REDIRECT
R Arun Raj | Jan 31, 2009 | Comments 0
PHP Redirect
<?php
header("Location: http://www.example.com/"); /* Redirect browser */
/* Make sure that code below does not get executed when we redirect. */
exit;
?>Javascript Redirect
<script type="text/javascript"> <!-- window.location = "http://www.arunrajr.com/" //--> </script>
Filed Under: javascript • PHP • Programming
About the Author: me : yeay its me arun



