Anyone need small PHP script programming?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Dynamix
    G F Y not
    • Jan 2004
    • 2910

    #1

    Anyone need small PHP script programming?

    If you have a small project requiring PHP, possibly with MySQL database integration, hit me up. I need something to code, especially if I can sell the script later on my site

    Just finished up a small graphical counter...

    www.dxan.com/image.php


    Patrick

    TGPFactory Full TGP Design & Installation Services
    ICQ 250 142 484 · AIM TGPDynamix · Email: patrick (at) tgpfactory (dot) com
    See who I am at AdultWhosWho.com!
  • devilspost
    Confirmed User
    • Feb 2004
    • 3980

    #2
    Howbout a porn site review script.

    Brothels and Escorts Worldwide.

    Comment

    • Jace
      FBOP Class Of 2013
      • Jan 2004
      • 35562

      #3
      free? hehe

      Comment

      • Dynamix
        G F Y not
        • Jan 2004
        • 2910

        #4
        Originally posted by JaceXXX
        free? hehe
        free or cheap

        TGPFactory Full TGP Design & Installation Services
        ICQ 250 142 484 · AIM TGPDynamix · Email: patrick (at) tgpfactory (dot) com
        See who I am at AdultWhosWho.com!

        Comment

        • Jace
          FBOP Class Of 2013
          • Jan 2004
          • 35562

          #5
          Originally posted by Dynamix
          free or cheap
          how about this

          i am trying to get my hosted galleries in order for our ccbill based program

          and I need to make the urls be
          http://www.domain.com/gallery/index.php?id=123456

          and when someone grabs the galleries they just replace the 123456 with their ccbill id.....and when the page loads up it replaces the php code in the id given in the url

          what is the easiest way to do this?

          i have been trying to use

          <?php
          echo($_GET["id"]);
          ?>

          but when I do

          <a href="http://refer.ccbill.com/cgi-bin/clicks.cgi?CA=
          <?php
          echo($_GET["id"]);
          ?>-0000&PA=812850"></a>

          it fucks up the a href formatting and doesn't format right

          Comment

          • candyflip
            Carpe Visio
            • Jul 2002
            • 43074

            #6
            Originally posted by devilspost
            Howbout a porn site review script.
            A simple one that anyone could easily integrate into their site would be a great little tool to have.

            Wouldn't be to difficult to code either. This is something that I could even do

            Spend you some brain.
            Email Me

            Comment

            • Dynamix
              G F Y not
              • Jan 2004
              • 2910

              #7
              Originally posted by JaceXXX
              how about this

              i am trying to get my hosted galleries in order for our ccbill based program
              lemme see your script so far, email to [email protected] as a .txt file

              TGPFactory Full TGP Design & Installation Services
              ICQ 250 142 484 · AIM TGPDynamix · Email: patrick (at) tgpfactory (dot) com
              See who I am at AdultWhosWho.com!

              Comment

              • naitirps
                Confirmed User
                • May 2004
                • 761

                #8
                Originally posted by JaceXXX
                how about this

                i am trying to get my hosted galleries in order for our ccbill based program

                and I need to make the urls be
                http://www.domain.com/gallery/index.php?id=123456

                and when someone grabs the galleries they just replace the 123456 with their ccbill id.....and when the page loads up it replaces the php code in the id given in the url

                what is the easiest way to do this?

                i have been trying to use

                <?php
                echo($_GET["id"]);
                ?>

                but when I do



                it fucks up the a href formatting and doesn't format right
                do this:

                print "<a href=\"http://refer.ccbill.com/cgi-bin/clicks.cgi?CA=".$_GET[id]."-0000&PA=812850\">bla bla ".$_GET[id]."</a>";
                Programmer
                ICQ 44035273 | AIM spritwork | Email spritian at spritian dot com

                Comment

                • crockett
                  in a van by the river
                  • May 2003
                  • 76818

                  #9
                  how about a simple search engine? nothing that goes out and finds pages but something you can add the links yourself and then the script will find the pages based on the requests?
                  In November, you can vote for America's next president or its first dictator.

                  Comment

                  • Dynamix
                    G F Y not
                    • Jan 2004
                    • 2910

                    #10
                    Originally posted by naitirps
                    do this:

                    print "<a href=\"http://refer.ccbill.com/cgi-bin/clicks.cgi?CA=".$_GET[id]."-0000&PA=812850\">bla bla ".$_GET[id]."</a>";
                    Use ECHO():

                    echo('<a href="http://refer.ccbill.com/cgi-bin/click.cgi?CA='.$_GET[id].'-0000&PA=812850">link for '.$GET[id].'</A>');

                    TGPFactory Full TGP Design & Installation Services
                    ICQ 250 142 484 · AIM TGPDynamix · Email: patrick (at) tgpfactory (dot) com
                    See who I am at AdultWhosWho.com!

                    Comment

                    • Dynamix
                      G F Y not
                      • Jan 2004
                      • 2910

                      #11
                      Originally posted by crockett
                      how about a simple search engine? nothing that goes out and finds pages but something you can add the links yourself and then the script will find the pages based on the requests?
                      This could be done pretty easily with a database, good idea

                      TGPFactory Full TGP Design & Installation Services
                      ICQ 250 142 484 · AIM TGPDynamix · Email: patrick (at) tgpfactory (dot) com
                      See who I am at AdultWhosWho.com!

                      Comment

                      • naitirps
                        Confirmed User
                        • May 2004
                        • 761

                        #12
                        Originally posted by Dynamix
                        Use ECHO():

                        echo('<a href="http://refer.ccbill.com/cgi-bin/click.cgi?CA='.$_GET[id].'-0000&PA=812850">link for '.$GET[id].'</A>');
                        eh, to each his own... i prefer print
                        Programmer
                        ICQ 44035273 | AIM spritwork | Email spritian at spritian dot com

                        Comment

                        • crockett
                          in a van by the river
                          • May 2003
                          • 76818

                          #13
                          Originally posted by Dynamix
                          This could be done pretty easily with a database, good idea
                          if you do it make it public lol becouse I need a script to do that..
                          In November, you can vote for America's next president or its first dictator.

                          Comment

                          • Dynamix
                            G F Y not
                            • Jan 2004
                            • 2910

                            #14
                            Originally posted by crockett
                            if you do it make it public lol becouse I need a script to do that..
                            Will do Do you want the results organized in any particular order? Of course it won't be anything like Google's algorithms or anything

                            TGPFactory Full TGP Design & Installation Services
                            ICQ 250 142 484 · AIM TGPDynamix · Email: patrick (at) tgpfactory (dot) com
                            See who I am at AdultWhosWho.com!

                            Comment

                            • crockett
                              in a van by the river
                              • May 2003
                              • 76818

                              #15
                              Originally posted by Dynamix
                              Will do Do you want the results organized in any particular order? Of course it won't be anything like Google's algorithms or anything
                              maybe by the most clicked.. but they would need to see the url link and a discription of the link.. kinda like a fake google or something
                              In November, you can vote for America's next president or its first dictator.

                              Comment

                              • Jace
                                FBOP Class Of 2013
                                • Jan 2004
                                • 35562

                                #16
                                i figured it out, nevermind

                                i am a dumbass....first off, i forgot to name the page .php and second it was the " that was fucking me up, and just by changing them to ' it works fine

                                Comment

                                Working...