View Single Post
Old 11-17-2002, 11:22 PM  
hyper
Confirmed User
 
Join Date: Mar 2002
Location: Mass Ass
Posts: 5,294
simple free php script i wrote

I wrote this script so people cant return via bookmarks without entering the main page.

PHP Code:
<?php 
$to
='http://www.mydomain.com';
$ref $_SERVER['HTTP_REFERER']; 
if ((
$ref !="http://www.mydomain.com")or($ref !="http://mydomain.com")) { 
header('Location: '.$to); 

?>
__________________

Last edited by hyper; 11-17-2002 at 11:24 PM..
hyper is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote