Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<?PHP
if (ereg("www\.test", $_SERVER['HTTP_REFERER']) != true)
{
    header("location http://www.example.com");
    end;
}
    echo "111";
        //dosomting?
?>

It still not working

share|improve this question
1  
It's exit not end – BoltClock Nov 16 '10 at 4:29
@BoltClock Exactly. – Jacob Relkin Nov 16 '10 at 4:31
ereg is deprecated. Use preg_match. – netcoder Nov 16 '10 at 4:39
@netcoder Forgot about that. I updated my answer. – Jacob Relkin Nov 16 '10 at 5:04
1  
doesn't "location" inside the header() need a colon? – Obay Nov 16 '10 at 5:07
show 1 more comment

1 Answer

up vote 3 down vote accepted

Try this:

<?php

   if (!preg_match("www\.test", $_SERVER['HTTP_REFERER'])) {
      header("Location: http://www.example.com");
      exit();
   }
   //do stuff...

?>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.