Application form script needed. please post

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Si
    Such Fun!
    • Feb 2008
    • 13900

    #1

    Application form script needed. please post

    Be nice if it's a freebie but paid will work aswell.

    Post them up please.

    I've searched google, found only 2 so far that look good but,

    one I couldn't download because the fucking link was broken
    and the other one is $300 for a complete job website (NOT WHAT I WANT)

    just something simple that I can upload and get it working in a few mins would be nice.
    must be able to view the results for each person and not in bulk like a survey script.

    Tanks in advance
  • lavitra
    So Fucking Banned
    • May 2009
    • 228

    #2
    start a partnership like stickyfingerz

    Comment

    • Si
      Such Fun!
      • Feb 2008
      • 13900

      #3
      Originally posted by lavitra
      start a partnership like stickyfingerz
      Umm?

      NO!

      Comment

      • lavitra
        So Fucking Banned
        • May 2009
        • 228

        #4
        http://www.gfy.com/showthread.php?t=906532

        Comment

        • Si
          Such Fun!
          • Feb 2008
          • 13900

          #5
          Originally posted by lavitra
          Oh Dear!

          Drama Alert!

          Comment

          • lavitra
            So Fucking Banned
            • May 2009
            • 228

            #6
            application forms are very simple to whip up.

            This is just grabbing the field information and inserting to mysql db right ?

            If you told a North American to do it, the market price would be no more than $35.

            If you told a eastern european/indian/chinese programmer, you can get it done for $5~$10.

            good luck!

            Comment

            • Si
              Such Fun!
              • Feb 2008
              • 13900

              #7
              Originally posted by lavitra
              application forms are very simple to whip up.

              This is just grabbing the field information and inserting to mysql db right ?

              If you told a North American to do it, the market price would be no more than $35.

              If you told a eastern european/indian/chinese programmer, you can get it done for $5~$10.

              good luck!
              I will if I Fail tomorrow trying to do it myself

              Comment

              • lavitra
                So Fucking Banned
                • May 2009
                • 228

                #8
                PHP Code:
                <form action="submit.php" method="POST">
                  <div>
                    <input type="text" name="firstname" size="31" />
                    <input type="text" name="lastname" size="31" />
                    <input type="text" name="email" size="31" />
                    <input type="text" name="shit" size="31" />
                    <input type="submit" value="Search" />
                  </div> </form> 
                
                then in your submit.php
                
                <?php
                
                if (isset($firstname) && isset($shit) && .... )){
                
                $firstname = mysql_escape_string(trim($_POST['firstname']));
                $shit =  mysql_escape_string(trim($_POST['shit']));
                ..
                ..
                
                $con = mysql_connect("localhost","id","pass");
                if (!$con)  {  die('Could not connect: ' . mysql_error());  }
                mysql_select_db("databasename", $con);
                
                //INSERT ROW
                $insertrow = "INSERT INTO 'databasename' (`ID` ,`text')
                                                      VALUES ('',  '$title');";
                mysql_query($insertrow) or die(mysql_error());
                }
                
                ?>






                anyways this is really half assed. theres other ways of doing it.

                good luck.

                Comment

                • fris
                  Too lazy to set a custom title
                  • Aug 2002
                  • 55679

                  #9
                  http://www.appnitro.com/
                  Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

                  Comment

                  • Si
                    Such Fun!
                    • Feb 2008
                    • 13900

                    #10
                    Originally posted by lavitra
                    PHP Code:
                    <form action="submit.php" method="POST">
                      <div>
                        <input type="text" name="firstname" size="31" />
                        <input type="text" name="lastname" size="31" />
                        <input type="text" name="email" size="31" />
                        <input type="text" name="shit" size="31" />
                        <input type="submit" value="Search" />
                      </div> </form> 
                    
                    then in your submit.php
                    
                    <?php
                    
                    if (isset($firstname) && isset($shit) && .... )){
                    
                    $firstname = mysql_escape_string(trim($_POST['firstname']));
                    $shit =  mysql_escape_string(trim($_POST['shit']));
                    ..
                    ..
                    
                    $con = mysql_connect("localhost","id","pass");
                    if (!$con)  {  die('Could not connect: ' . mysql_error());  }
                    mysql_select_db("databasename", $con);
                    
                    //INSERT ROW
                    $insertrow = "INSERT INTO 'databasename' (`ID` ,`text')
                                                          VALUES ('',  '$title');";
                    mysql_query($insertrow) or die(mysql_error());
                    }
                    
                    ?>






                    anyways this is really half assed. theres other ways of doing it.

                    good luck.
                    Thanks i'll give it a shot a bit later

                    Originally posted by fris
                    That looks very useful. thanks fris

                    Comment

                    • NaughtyRob
                      Two fresh affiliate progs
                      • Nov 2004
                      • 29602

                      #11
                      This one kicks ass and is very easy.
                      http://www.coffeecup.com/form-builder/

                      See it in action here...

                      http://www.sincitytalent.com/myform.html
                      [email protected]
                      Skype: 17026955414
                      Vacares Web Hosting - Protect Your Ass with Included Daily Backups

                      Comment

                      • candyflip
                        Carpe Visio
                        • Jul 2002
                        • 43069

                        #12
                        MachForms is the shit. I see Fris already beat me to it, but that's mostly because he knows what he's talking about.

                        Spend you some brain.
                        Email Me

                        Comment

                        Working...