a simple form

Discussion in 'PHP' started by super9xman, Feb 16, 2007.

  1. #1
    Hey everyone I need help making a simple form excatlly like this http://www.sjmast.com/register2.htm I want it to go to a thank you page. which is easy to intergrate. Can anyone help me with this I am willing to pay.
     
    super9xman, Feb 16, 2007 IP
  2. Darkhodge

    Darkhodge Well-Known Member

    Messages:
    2,111
    Likes Received:
    76
    Best Answers:
    1
    Trophy Points:
    185
    #2
    You'll need to setup a database and then use PHP to save the info into the database.

    Check your PM :)
     
    Darkhodge, Feb 16, 2007 IP
  3. super9xman

    super9xman Banned

    Messages:
    289
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #3
    thank you, but someone is already helping me now.
     
    super9xman, Feb 16, 2007 IP
  4. Darkhodge

    Darkhodge Well-Known Member

    Messages:
    2,111
    Likes Received:
    76
    Best Answers:
    1
    Trophy Points:
    185
    #4
    Ah right no probs :D
     
    Darkhodge, Feb 16, 2007 IP
  5. aco4god

    aco4god Peon

    Messages:
    19
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Don't pay anyone for something this simple.

    You need a database set up for this or you can save the info on flat files on the web server.

    Ex:
    
    <?php
    // ... check the submitted POSTs with some regex...
    $db->query("INSERT INTO users ('name', ...) VALUES ('$name')");
    
    // or...
    
    $ob = fopen($file, 'a');
    fwrites($name . '|' . $whatever); // Ex: Joe|2979842 
    fclose($ob);
    // ...
    
    PHP:
     
    aco4god, Feb 16, 2007 IP