hide link with php

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • tonkagunner
    Confirmed User
    • Mar 2003
    • 830

    #1

    hide link with php

    how do I hide link with php script? I want to do something where I make link something like link2.php and then have that redirect to another page.
    Traffic Cash Gold
  • TonyL
    Confirmed User
    • Feb 2002
    • 900

    #2
    PHP Code:
    <?
    header("Location: http://gofuckyourmom.com");
    ?>
    -Tony

    Comment

    • tonkagunner
      Confirmed User
      • Mar 2003
      • 830

      #3
      Thanks Tony.

      Your code is close, but I'm looking for redirector type php script that I can point to from regular html page, not php page. I have rotator thing, but code isn't quite right for one site I think.

      <?php
      $id=md5(uniqid(rand()));
      $location=sprintf("Location: http://$id.sitetogoto.com");
      header($location);
      ?>
      Traffic Cash Gold

      Comment

      • TonyL
        Confirmed User
        • Feb 2002
        • 900

        #4
        I don't quite understand what you want to do.

        Let me take a guess at what you are are trying to say.

        You need a PHP program that redirects to a URL of your specification from a normal HTML doc? So I assume you are going to submit the URL you would like the PHP script to redirect to through a POST or GET request. So lets try this.

        In the HTML doc place an anchor to the PHP script.

        ** HTML DOC
        href="redirect.php?URL=www.suckme.com"
        **

        ** PHP SCRIPT
        <?
        header("Location: $URL");
        ?>
        **

        This more in line with what you are looking for?

        -Tony

        Comment

        • Basic_man
          Programming King Pin
          • Oct 2003
          • 27360

          #5
          Originally posted by TonyL
          I don't quite understand what you want to do.

          Let me take a guess at what you are are trying to say.

          You need a PHP program that redirects to a URL of your specification from a normal HTML doc? So I assume you are going to submit the URL you would like the PHP script to redirect to through a POST or GET request. So lets try this.

          In the HTML doc place an anchor to the PHP script.

          ** HTML DOC
          href="redirect.php?URL=www.suckme.com"
          **

          ** PHP SCRIPT
          <?
          header("Location: $URL");
          ?>
          **

          This more in line with what you are looking for?

          -Tony
          I think this one will work fine!
          UUGallery Builder - automated photo/video gallery plugin for Wordpress!
          Stop looking! Checkout Naked Hosting, online since 1999 !

          Comment

          Working...