Need something coding in php?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Sam Granger
    Confirmed User
    • Dec 2004
    • 3958

    #1

    Need something coding in php?

    Hey guys,

    I'm looking to fill my portfolio a bit. I'm offering 2 free PHP5 coding spots. Not going to create anything you will resell. Must be for your personal use. And do not ask something huge, I'm doing this for free. Looking forward to seeing some requests.

    $35-40 Per Signup, 60-70% Rev Share, over 80 Sites, Exclusive Sites, tons of free content
    14,000+ Free hosted Galleries, RSS feeds, Domain Hosting, Embedded Flash Movies
    Join Fetish Hits now!
    ICQ: 358652230
  • Chris
    Too lazy to set a custom title
    • May 2003
    • 27880

    #2
    i actaully do


    i need a script where i can input something into a field

    for example

    [email protected]

    it writes it to list.txt
    if already in the list
    lets me know

    list formated like

    [email protected],[email protected],[email protected]
    [email protected]

    Comment

    • Chris
      Too lazy to set a custom title
      • May 2003
      • 27880

      #3
      i already have one code but it doesnt work on my server

      Code:
      <HTML>
      <HEAD><TITLE></TITLE></HEAD>
      <BODY>
      <?
      if ($_POST['data'] != "") {
        $filedata=@explode(",",@file_get_contents("file.txt"));
        if ($filedata != "") {
          if (array_search($_POST['data'],$filedata) == FALSE) {
            $filedata[]=$_POST['data'];
            file_put_contents("file.txt",implode(","$filedata));
            echo "<h2>data added to file</h2><br /><br />";
          } else {
            echo "<h2>data already exists in file</h2><br /><br />";
          }
        } else {
            $filedata=array();
            $filedata[]=$_POST['data'];
            file_put_contents("file.txt",implode(","$filedata));
            echo "<h2>data added to file</h2><br /><br />";
        }
      }
      
      
      ?>
      
      <FORM method="post" action="<? echo($_SERVER['PHP_SELF']); ?>">
      <input type="text" size="30" maxlength="255" name="data">
      </FORM>
      </BODY>
      </HTML>
      spits out Parse error: syntax error, unexpected T_VARIABLE in /usr/www/virtual/jupzchris/www.jupzchris.com/email.php on line 10
      [email protected]

      Comment

      • Nookster
        Confirmed IT Professional
        • Nov 2005
        • 3744

        #4
        Originally posted by Chris
        i already have one code but it doesnt work on my server

        Code:
        <HTML>
        <HEAD><TITLE></TITLE></HEAD>
        <BODY>
        <?
        if ($_POST['data'] != "") {
          $filedata=@explode(",",@file_get_contents("file.txt"));
          if ($filedata != "") {
            if (array_search($_POST['data'],$filedata) == FALSE) {
              $filedata[]=$_POST['data'];
              file_put_contents("file.txt",implode(","$filedata));
              echo "<h2>data added to file</h2><br /><br />";
            } else {
              echo "<h2>data already exists in file</h2><br /><br />";
            }
          } else {
              $filedata=array();
              $filedata[]=$_POST['data'];
              file_put_contents("file.txt",implode(","$filedata));
              echo "<h2>data added to file</h2><br /><br />";
          }
        }
        
        
        ?>
        
        <FORM method="post" action="<? echo($_SERVER['PHP_SELF']); ?>">
        <input type="text" size="30" maxlength="255" name="data">
        </FORM>
        </BODY>
        </HTML>
        spits out Parse error: syntax error, unexpected T_VARIABLE in /usr/www/virtual/jupzchris/www.jupzchris.com/email.php on line 10
        Change line 10, that reads:
        file_put_contents("file.txt",implode(","$filedata) );
        change it to:
        file_put_contents("file.txt",implode(",",$filedata ));

        You're welcome.
        The Best Affiliate Software, Ever.

        Comment

        • Sam Granger
          Confirmed User
          • Dec 2004
          • 3958

          #5
          Well chris looks like your problem has been solved. Still looking for 2 spots. About to go to bed, just got back from a night out. I'll reply in the morning.

          $35-40 Per Signup, 60-70% Rev Share, over 80 Sites, Exclusive Sites, tons of free content
          14,000+ Free hosted Galleries, RSS feeds, Domain Hosting, Embedded Flash Movies
          Join Fetish Hits now!
          ICQ: 358652230

          Comment

          • Kelli58
            Confirmed User
            • Aug 2006
            • 2271

            #6
            What is your ICQ? I have a small, very tiny in fact - project in mind for you. But would rather discuss the details in private.
            💎 Earn Money by Helping Content Creators Earn More. 💎 The most unique affiliate program in the game. There are more than 1.5 million OnlyFans creators. Here's your chance to make money from them!

            Comment

            • Sam Granger
              Confirmed User
              • Dec 2004
              • 3958

              #7
              262613995

              $35-40 Per Signup, 60-70% Rev Share, over 80 Sites, Exclusive Sites, tons of free content
              14,000+ Free hosted Galleries, RSS feeds, Domain Hosting, Embedded Flash Movies
              Join Fetish Hits now!
              ICQ: 358652230

              Comment

              • wizzart
                scriptmaster
                • May 2006
                • 5246

                #8
                Need image crop tutorial in PHP please?
                BimboZone

                Comment

                • Sam Granger
                  Confirmed User
                  • Dec 2004
                  • 3958

                  #9
                  Originally posted by wizzart
                  Need image crop tutorial in PHP please?
                  Tutorial? Or script?

                  I'm only interested in writing scripts at the moment.

                  $35-40 Per Signup, 60-70% Rev Share, over 80 Sites, Exclusive Sites, tons of free content
                  14,000+ Free hosted Galleries, RSS feeds, Domain Hosting, Embedded Flash Movies
                  Join Fetish Hits now!
                  ICQ: 358652230

                  Comment

                  • Kelli58
                    Confirmed User
                    • Aug 2006
                    • 2271

                    #10
                    Turn your ICQ on already. :P
                    💎 Earn Money by Helping Content Creators Earn More. 💎 The most unique affiliate program in the game. There are more than 1.5 million OnlyFans creators. Here's your chance to make money from them!

                    Comment

                    Working...