Is it possible to make a webpage show a specific frameset if the referrer of the visitor has a certain value?
<?php if($_SERVER['HTTP_REFERER'] == 'someplace') { header('Location: http://www.yoursite.com/your-other-page-with-the-frameset.php'); } else{ //the whole rest of this page here } ?> PHP: