PROGRAMMERS.. I have a relatively small project for you..

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • xxxdesign-net
    My hips don't lie
    • Nov 2002
    • 10129

    #1

    PROGRAMMERS.. I have a relatively small project for you..

    So basically, I am using Verotel and want to offer hosted galleries...

    So what I need is hosted galleries with a url similar to this one
    http://mydomain.com/gal1/index.php?vercode=XXXXXX
    Then when you replace the X's by your Verotel code and the surfer goes on the gallery, your ref code gets inserted at the end of the aff. URL which is in the gallery.. like this http://links.verotel.com/cgi-bin/sho...vercode=XXXXXX

    Give me a quote, time frame or if you have any questions, hit me up on ICQ 111-246-133

    p.s. Competent programmers only please..
  • StuartD
    Sofa King Band
    • Jul 2002
    • 29903

    #2
    http://links.verotel.com/cgi-bin/showsite.verotel?vercode=<?=$_GET['vercode']?>

    That'll be $50.
    This is me on facebook
    This is me on twitter

    Comment

    • xxxdesign-net
      My hips don't lie
      • Nov 2002
      • 10129

      #3
      Originally posted by StuartD
      http://links.verotel.com/cgi-bin/showsite.verotel?vercode=<?=$_GET['vercode']?>

      That'll be $50.
      lol thanks.. but isnt there a script to install on the server or something..? I know nothing about .php.. but that cannot be that simple..?

      Comment

      • StuartD
        Sofa King Band
        • Jul 2002
        • 29903

        #4
        Give it a try.

        Make a file called "index.php" and put it on your server.

        Be sure to put a link in there like this:
        http://links.verotel.com/cgi-bin/showsite.verotel?vercode=<?=$_GET['vercode']?>

        Then load that index page in your browser like this:
        index.php?vercode=mytestcode

        And see what your link looks like.
        This is me on facebook
        This is me on twitter

        Comment

        • EddiePulp
          Confirmed User
          • Mar 2004
          • 1332

          #5
          there isnt much to it.. you could make things neater by using modrewrite to make the url something like http://www.galeries.com/sexyhotteens/<refcode>/

          you could also put in a shaving feature
          Code:
          <?php
          srand(time());
          $random = (rand()&#37;2);
          if ($random != 1 || $random !=0)
          {
          $vercode ='00000';
          }
          ?>
          Last edited by EddiePulp; 09-24-2007, 07:30 AM. Reason: changing variable name
          I dont need a sig.

          Comment

          • beta-tester
            Rock 'n Roll Baby!
            • Sep 2004
            • 22562

            #6
            what StuartD said ....

            Sig for sale. Affordable prices. Contact me and get a great deal ;)

            My contact:
            ICQ: 944-320-46
            e-mail: manca {AT} HotFreeSex4All.com

            Comment

            • EddiePulp
              Confirmed User
              • Mar 2004
              • 1332

              #7
              you may need a ; in the code?
              Code:
              http://links.verotel.com/cgi-bin/showsite.verotel?vercode=<?=$_GET['vercode'];?>
              after the _GET['vericode'] and before the ?>
              I dont need a sig.

              Comment

              • Oracle Porn
                Affiliate
                • Oct 2002
                • 24433

                #8
                Originally posted by EddiePulp
                there isnt much to it.. you could make things neater by using modrewrite to make the url something like http://www.galeries.com/sexyhotteens/<refcode>/

                you could also put in a shaving feature
                Code:
                <?php
                srand(time());
                $random = (rand()%2);
                if ($random != 1 || $random !=0)
                {
                $vercode ='00000';
                }
                ?>


                Comment

                • k0nr4d
                  Confirmed User
                  • Aug 2006
                  • 9231

                  #9
                  Originally posted by EddiePulp
                  you may need a ; in the code?
                  Code:
                  http://links.verotel.com/cgi-bin/showsite.verotel?vercode=<?=$_GET['vercode'];?>
                  after the _GET['vericode'] and before the ?>
                  i think if you just do one line of code inline with the <? ?> you dont need to put the ; at the end.
                  Mechanical Bunny Media
                  Mechbunny Tube Script | Mechbunny Webcam Aggregator Script | Custom Web Development

                  Comment

                  • EddiePulp
                    Confirmed User
                    • Mar 2004
                    • 1332

                    #10
                    Originally posted by k0nr4d
                    i think if you just do one line of code inline with the <? ?> you dont need to put the ; at the end.
                    makes sense i spose.. give that ; pretty much means go to the next line.
                    I dont need a sig.

                    Comment

                    • EddiePulp
                      Confirmed User
                      • Mar 2004
                      • 1332

                      #11
                      that'll be 25&#37; of all savings for the shaving code.
                      I dont need a sig.

                      Comment

                      • Bro Media - BANNED FOR LIFE
                        MOBILE PORN: IMOBILEPORN
                        • Jan 2004
                        • 16502

                        #12
                        PHP Code:
                        <?php
                        if($_GET['vercode'] == true)
                        {
                          $vercode = $_GET['vercode'];
                        }else{
                          $vercode = "code to use if no vercode defined";
                        }
                        ?>
                        http://links.verotel.com/cgi-bin/showsite.verotel?vercode=<?=$vercode; ?>

                        even better ;)

                        Comment

                        • xxxdesign-net
                          My hips don't lie
                          • Nov 2002
                          • 10129

                          #13
                          Originally posted by StuartD
                          Give it a try.

                          Make a file called "index.php" and put it on your server.

                          Be sure to put a link in there like this:
                          http://links.verotel.com/cgi-bin/showsite.verotel?vercode=<?=$_GET['vercode']?>

                          Then load that index page in your browser like this:
                          index.php?vercode=mytestcode

                          And see what your link looks like.

                          Works great thanks man

                          Comment

                          • StuartD
                            Sofa King Band
                            • Jul 2002
                            • 29903

                            #14
                            Originally posted by xxxdesign-net
                            Works great thanks man
                            My pleasure
                            This is me on facebook
                            This is me on twitter

                            Comment

                            • xxxdesign-net
                              My hips don't lie
                              • Nov 2002
                              • 10129

                              #15
                              Originally posted by StuartD
                              My pleasure
                              btw.. is it a pretty solid solution.. that will pretty much work with all browsers? Sounds nearly too easy.. lol

                              Comment

                              • StuartD
                                Sofa King Band
                                • Jul 2002
                                • 29903

                                #16
                                Originally posted by xxxdesign-net
                                btw.. is it a pretty solid solution.. that will pretty much work with all browsers? Sounds nearly too easy.. lol
                                It's server side so no need to worry about browser compatibility.

                                It's just that easy.
                                This is me on facebook
                                This is me on twitter

                                Comment

                                • xxxdesign-net
                                  My hips don't lie
                                  • Nov 2002
                                  • 10129

                                  #17
                                  Originally posted by StuartD
                                  It's server side so no need to worry about browser compatibility.

                                  It's just that easy.
                                  cool thanks

                                  Comment

                                  Working...