recip link program

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • campimp
    Confirmed User
    • Jan 2007
    • 1340

    #1

    recip link program

    Hello,

    I would like to have a place on my site where it automatically inserts links back to any pages that link into my site.

    something like what you see in the left hand column on thatsfuckinghot.com

    i cant seem to find anything online to help me,

    can someone point me in the right direction?

    thank you
  • schneemann
    Confirmed User
    • Oct 2006
    • 749

    #2
    That would be painfully easy to write in PHP.
    Code:
    <?php
    
    $referer = $_SERVER['HTTP_REFERER'];
    
    // do some magic to detect whether the refering page was on your site
    // then, either put that referer into a database or flat file
    ?>
    You're likely to become very attractive to referer spam that way, though.
    Deranged World

    Comment

    • CaptainHowdy
      Too lazy to set a custom title
      • Dec 2004
      • 94730

      #3
      Originally posted by schneemann
      That would be painfully easy to write in PHP.
      Code:
      <?php
      
      $referer = $_SERVER['HTTP_REFERER'];
      
      // do some magic to detect whether the refering page was on your site
      // then, either put that referer into a database or flat file
      ?>
      You're likely to become very attractive to referer spam that way, though.
      Anyway it's a good tip !!

      Comment

      Working...